This commit is contained in:
2024-01-17 12:02:03 -07:00
parent 161cc95538
commit f8ce4e3b48
43 changed files with 1614 additions and 21 deletions

18
pages/templates/blog.html Normal file
View File

@ -0,0 +1,18 @@
{{define "title"}}
GOTH // Blog
{{end}}
{{define "headercontent"}}
GOTH // Blog
{{end}}
{{define "head"}}
{{end}}
{{define "main"}}
<section class="flex flex-row flex-wrap gap-2 justify-center align-middle">
{{range .Posts}}
{{template "cardlinks" .}}
{{end}}
</section>
{{end}}