etch/layouts/partials/posts.html

12 lines
288 B
HTML
Raw Normal View History

2020-05-15 02:48:11 -04:00
<h3>Posts</h3>
2020-05-15 20:47:34 -04:00
<ul id="posts">
{{ range where site.RegularPages "Type" "in" site.Params.mainSections }}
<li>
<a href="{{ .Permalink }}">
{{- .Title -}}
<small><time>{{ .Date.Format "Jan 2, 2006" }}</time></small>
</a>
</li>
2020-05-15 02:48:11 -04:00
{{ end }}
2020-05-15 20:47:34 -04:00
</ul>