blog-legacy/themes/bbaovanc/layouts/_default/list.html
2021-03-25 15:56:52 -05:00

15 lines
288 B
HTML

{{ define "main" }}
{{ range .Data.Pages }}
<article class="post-snippet">
<h3>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h3>
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
{{ .Date.Format "January 2, 2006" }}
</time>
</article>
{{ end }}
{{ end }}