41 lines
665 B
HTML
41 lines
665 B
HTML
{{define "title"}}
|
|
Atridad Lahiji // Projects
|
|
{{end}}
|
|
|
|
{{define "description"}}
|
|
Projects I've Done
|
|
{{end}}
|
|
|
|
{{define "navcontent"}}
|
|
Atridad Lahiji // Projects
|
|
{{end}}
|
|
|
|
{{define "head"}}
|
|
{{end}}
|
|
|
|
{{define "main"}}
|
|
|
|
{{if .Projects}}
|
|
<div class="card-grid-container">
|
|
<section class="card-grid">
|
|
{{range .Projects}}
|
|
{{template "cardlinks" .}}
|
|
{{end}}
|
|
</section>
|
|
</div>
|
|
{{end}}
|
|
|
|
{{if not .Projects}}
|
|
<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}}
|
|
|
|
{{end}}
|
|
|
|
{{define "foot"}}
|
|
{{end}}
|