You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
453 B
18 lines
453 B
{{ define "main" }}
|
|
<article class="row-fluid navmargin">
|
|
<header class="page-header">
|
|
<h1>{{.Title}}</h1>
|
|
</header>
|
|
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
|
|
{{.Content}}
|
|
</article>
|
|
<ul>
|
|
<!-- Ranges through content/posts/*.md -->
|
|
{{ range .Data.Pages }}
|
|
<li>
|
|
<a href="{{.RelPermalink}}">{{.Date.Format "2006-01-02"}} | {{.Title}}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
|
|
|