Files
davideisinger.com/themes/v2/layouts/journal/list.html
David Eisinger 52fc1f6956 Move to 'journal'
2023-03-02 22:33:20 -05:00

13 lines
268 B
HTML

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