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

39 lines
715 B
HTML
Raw Normal View History

2024-02-22 14:14:11 -07:00
{{define "title"}}
2024-11-03 17:01:48 -06:00
GOTH Stack // Tools
2024-02-22 14:14:11 -07:00
{{end}}
2025-01-12 14:51:43 -06:00
{{define "description"}}
Misc. Tools for Demo Purposes
{{end}}
{{define "navcontent"}}
GOTH Stack // Tools
2024-02-22 14:14:11 -07:00
{{end}}
{{define "head"}}
2024-05-07 18:03:54 -06:00
<link rel="stylesheet" href="/public/css/styles.css" />
2024-02-22 14:14:11 -07:00
{{end}}
{{define "main"}}
2024-10-23 15:04:26 -06:00
{{if .Tools}}
<section class="flex flex-row flex-wrap gap-2 justify-center align-middle">
{{range .Tools}}
{{template "cardlinks" .}}
{{end}}
</section>
{{end}}
{{if not .Tools}}
2024-02-22 14:14:11 -07:00
<section class="flex flex-row flex-wrap gap-2 justify-center align-middle">
2024-10-23 15:04:26 -06:00
<h2 class="text-2xl font-extrabold tracking-tight text-white sm:text-[2rem]">
Nothing to see here (yet)!
</h2>
2024-02-22 14:14:11 -07:00
</section>
{{end}}
2024-10-23 15:04:26 -06:00
{{end}}
2024-02-22 14:14:11 -07:00
{{define "foot"}}
2024-10-23 15:04:26 -06:00
{{end}}