Template
1
0
Fork 0
goth.stack/pages/templates/posts.html

22 lines
390 B
HTML
Raw Normal View History

2023-05-18 20:04:55 -06:00
{{define "title"}}
Atridad Lahiji // Blog
{{end}}
{{define "headercontent"}}
Atridad Lahiji // Blog
{{end}}
{{define "head"}}
2024-05-07 18:03:54 -06:00
<link rel="stylesheet" href="/public/css/styles.css" />
2023-05-18 20:04:55 -06:00
{{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"}}
2024-05-07 18:03:54 -06:00
{{end}}