Files
davideisinger.com/themes/v2/layouts/_default/list.html
2023-03-02 21:54:55 -05:00

13 lines
266 B
HTML

{{ define "main" }}
<section>
<hr>
{{ range (where .Site.RegularPages "Type" "in" "posts") }}
<h3>
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ .Date | time.Format "(2006-01-02)" }}
</h3>
{{ end }}
</section>
{{ end }}