Files
davideisinger.com/themes/v2/layouts/journal/list.html
David Eisinger 5d37de8334 Tag pages
2023-03-02 22:45:29 -05:00

17 lines
321 B
HTML

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