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