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