atri.dad/pages/templates/posts.html
Atridad Lahiji 8b40a4b1c1
All checks were successful
Docker Deploy / build-and-push (push) Successful in 1m18s
Switched to the OG CLI
2025-03-02 01:00:52 -06:00

37 lines
650 B
HTML

{{define "title"}}
Atridad Lahiji // Posts
{{end}}
{{define "description"}}
Posts I've Written
{{end}}
{{define "navcontent"}}
Atridad Lahiji // Posts
{{end}}
{{define "head"}}
{{end}}
{{define "main"}}
{{if .Posts}}
<section class="flex flex-row flex-wrap gap-2 justify-center align-middle">
{{range .Posts}}
{{template "cardlinks" .}}
{{end}}
</section>
{{end}}
{{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}}
{{define "foot"}}
{{end}}