Files
davideisinger.com/themes/v2/layouts/notes/list.html
2023-05-15 12:37:25 -04:00

16 lines
284 B
HTML

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