Template
1
0
Fork 0
goth.stack/pages/templates/blog.html
2024-01-17 12:02:03 -07:00

18 lines
288 B
HTML

{{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}}