atri.dad/pages/templates/projects.html
Atridad Lahiji 862ff8e546
All checks were successful
Docker Deploy / build-and-push (push) Successful in 57s
Fixed formatting and added description
2025-01-11 23:08:39 -06:00

38 lines
727 B
HTML

{{define "title"}}
Atridad Lahiji // Projects
{{end}}
{{define "description"}}
Projects I've Done
{{end}}
{{define "navcontent"}}
Atridad Lahiji // Projects
{{end}}
{{define "head"}}
<link rel="stylesheet" href="/public/css/styles.css" />
{{end}}
{{define "main"}}
{{if .Projects}}
<section class="flex flex-row flex-wrap gap-2 justify-center align-middle">
{{range .Projects}}
{{template "cardlinks" .}}
{{end}}
</section>
{{end}}
{{if not .Projects}}
<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}}