ataricode.com/layouts/_default/list.html

17 lines
383 B
HTML

{{ define "main" }}
<p class="title-text" style="text-align: center">Recent Posts</p>
<p class="subtitle" style="text-align: center">Things I've been working on</p>
{{ partial "nav.html" . }}
<div class="content">
{{ range .Data.Pages.GroupByDate "2006" }}
<p>{{ .Key }}</p>
<ul>
{{ range .Pages }}
{{ .Render "li" }}
{{ end }}
</ul>
{{ end }}
</div>
{{ end}}