etch/layouts/partials/posts.html

14 lines
342 B
HTML
Raw Normal View History

2020-05-15 02:48:11 -04:00
<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 }}