atri.dad/pages/templates/posts.html

35 lines
654 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"}}
2024-10-23 15:04:26 -06:00
{{if .Posts}}
2023-05-18 20:04:55 -06:00
<section class="flex flex-row flex-wrap gap-2 justify-center align-middle">
{{range .Posts}}
{{template "cardlinks" .}}
{{end}}
</section>
{{end}}
2024-10-23 15:04:26 -06:00
{{if not .Posts}}
<section class="flex flex-row flex-wrap gap-2 justify-center align-middle">
<h2 class="text-2xl font-extrabold tracking-tight text-white sm:text-[2rem]">
Nothing to see here (yet)!
</h2>
</section>
{{end}}
{{end}}
2023-05-18 20:04:55 -06:00
{{define "foot"}}
2024-10-23 15:04:26 -06:00
{{end}}