No more building CSS

This commit is contained in:
2025-03-31 03:49:05 -06:00
parent 2560ff159c
commit 0a5d5df468
22 changed files with 1541 additions and 528 deletions

View File

@@ -15,21 +15,27 @@ Atridad Lahiji // Tools
{{define "main"}}
{{if .Tools}}
<section class="flex flex-row flex-wrap gap-2 justify-center align-middle">
{{range .Tools}}
{{template "cardlinks" .}}
{{end}}
</section>
{{end}}
<div class="tools-page">
{{if .Tools}}
<div class="card-grid-container">
<section class="card-grid">
{{range .Tools}}
{{template "cardlinks" .}}
{{end}}
</section>
</div>
{{end}}
{{if not .Tools}}
<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}}
{{if not .Tools}}
<div class="card-grid-container">
<section class="card-grid">
<h2 class="text-2xl font-extrabold tracking-tight text-white sm:text-[2rem]">
Nothing to see here (yet)!
</h2>
</section>
</div>
{{end}}
</div>
{{end}}