atri.dad/pages/templates/papers.html

39 lines
712 B
HTML
Raw Normal View History

2024-10-23 15:04:26 -06:00
{{define "title"}}
2025-01-03 02:21:58 -07:00
Atridad Lahiji // Papers
2024-10-23 15:04:26 -06:00
{{end}}
2025-01-11 23:08:39 -06:00
{{define "description"}}
Papers I've Written
{{end}}
{{define "navcontent"}}
2025-01-03 02:21:58 -07:00
Atridad Lahiji // Papers
2024-10-23 15:04:26 -06:00
{{end}}
{{define "head"}}
<link rel="stylesheet" href="/public/css/styles.css" />
{{end}}
{{define "main"}}
2025-01-03 02:21:58 -07:00
{{if .Papers}}
2024-10-23 15:04:26 -06:00
<section class="flex flex-row flex-wrap gap-2 justify-center align-middle">
2025-01-03 02:21:58 -07:00
{{range .Papers}}
2024-10-23 15:04:26 -06:00
{{template "cardlinks" .}}
{{end}}
</section>
{{end}}
2025-01-03 02:21:58 -07:00
{{if not .Papers}}
2024-10-23 15:04:26 -06:00
<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}}