Files
davideisinger.com/themes/v2/layouts/notes/list.html
2023-04-30 23:22:11 -04:00

16 lines
266 B
HTML

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