Files
davideisinger.com/themes/v2/layouts/notes/list.html
2023-04-30 14:03:03 -04:00

17 lines
317 B
HTML

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