19 lines
505 B
HTML
19 lines
505 B
HTML
{{ define "main" }}
|
|
<main class="container">
|
|
<header>
|
|
<h1>{{.Title}}</h1>
|
|
</header>
|
|
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
|
|
{{.Content}}
|
|
<article>
|
|
<!-- Ranges through content/posts/*.md -->
|
|
{{ range .Pages }}
|
|
<article>
|
|
<a href="{{.Permalink}}">{{.Title}}</a>
|
|
— {{.PublishDate.Format "2006-01-02"}}
|
|
</article>
|
|
{{ end }}
|
|
</article>
|
|
</main>
|
|
{{ end }}
|