Initial commit

This commit is contained in:
2025-01-07 13:02:12 -07:00
commit 00474fdb13
5 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{{ define "main" }}
<section>
<h2>Posts</h2>
<ul>
{{ range .Pages }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</section>
{{ end }}