Template
1
0
Fork 0
goth.stack/pages/templates/blog.html
2024-02-12 14:42:16 -07:00

22 lines
376 B
HTML

{{define "title"}}
GOTH // Blog
{{end}}
{{define "headercontent"}}
GOTH // Blog
{{end}}
{{define "head"}}
<link rel="stylesheet" href="/public/css/styles.blog.css" />
{{end}}
{{define "main"}}
<section class="flex flex-row flex-wrap gap-2 justify-center align-middle">
{{range .Posts}}
{{template "cardlinks" .}}
{{end}}
</section>
{{end}}
{{define "foot"}}
{{end}}