Initial website deployment
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 1m44s

This commit is contained in:
Akshay Kolli
2026-07-02 00:28:25 -07:00
commit e240b99cb2
66 changed files with 2774 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{{ with . }}
<div class="item-list">
{{ range sort . "year" "desc" }}
{{ $pubTitle := .title }}
{{ $authors := .authors }}
<article class="item-row">
<div class="item-year">{{ .year }}</div>
<div class="item-body">
<div class="item-head">
<div class="item-title">{{ $pubTitle }}</div>
</div>
{{ with $authors }}<p class="row-summary">{{ . }}</p>{{ end }}
</div>
</article>
{{ end }}
</div>
{{ else }}
<p class="empty-list">No publications yet.</p>
{{ end }}