Much progress

This commit is contained in:
Maximilian Friedersdorff 2025-01-27 22:28:18 +00:00
parent ca35e6760d
commit c6975d3814
6 changed files with 133 additions and 19 deletions

10
templates/list.tmpl.html Normal file
View file

@ -0,0 +1,10 @@
{{define "title"}}All Notes{{end}}
{{define "main"}}
<ul>
{{range $title := .titles}}
<li>
<a href="{{$title}}/">{{$title}}</a>
</li>
{{end}}
</ul>
{{end}}