initial commit

This commit is contained in:
Drew
2025-02-10 16:38:53 -07:00
commit 1317913e3a
19 changed files with 2651 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{{ define "main" }}
<h1 class="text-2xl font-bold">{{ .Title }}</h1>
<ul class="mt-4 space-y-4">
{{ range .Pages }}
<li>
<a href="{{ .RelPermalink }}" class="text-lg font-semibold hover:underline">
{{ .Title }}
</a>
</li>
{{ end }}
</ul>
{{ end }}