Start 'how to spend time' note

This commit is contained in:
David Eisinger
2023-04-29 23:44:28 -04:00
parent 08378e7596
commit f4601d23d2
6 changed files with 1193 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{{ 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 }}