Files
davideisinger.com/themes/v2/layouts/notes/list.html
2023-10-24 20:51:31 -04:00

16 lines
284 B
HTML

{{ define "main" }}
<section>
<hr>
<h2>Notes</h2>
<ul>
{{ range (where .Site.RegularPages.ByLastmod.Reverse "Type" "in" "notes") }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</section>
{{ end }}