etch/layouts/partials/posts.html
2020-05-14 23:48:11 -07:00

14 lines
342 B
HTML

<h3>Posts</h3>
{{ range where .Pages "Section" "posts" }}
<ul id="posts">
{{ range .Pages.ByDate.Reverse }}
<li>
<a href="{{ .Permalink }}">
{{- .Title -}}
<small><time>{{ .Date.Format "Jan 2, 2006" }}</time></small>
</a>
</li>
{{ end }}
</ul>
{{ end }}