Redesign site and optimize page performance
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 23s

This commit is contained in:
Akshay Kolli
2026-07-18 19:57:44 -04:00
parent 2f2794f5d5
commit 9dda076b56
53 changed files with 747 additions and 277 deletions

View File

@@ -3,7 +3,7 @@
{{ range sort . "date" "desc" }}
{{ $pubTitle := .title }}
{{ $authors := .authors }}
<article class="item-row">
<article class="item-row publication-row">
<div class="item-year">
{{ with .date }}
{{ time.Format "Jan 2006" . }}
@@ -15,7 +15,13 @@
<div class="item-head">
<div class="item-title">{{ $pubTitle }}</div>
</div>
{{ with .venue }}<p class="publication-venue">{{ . }}</p>{{ end }}
{{ with $authors }}<p class="row-summary">{{ . }}</p>{{ end }}
{{ with .links }}
<span class="item-links publication-links">
{{ range . }}<a href="{{ .url }}" aria-label="{{ .label }} for {{ $pubTitle }}" title="{{ .label }} for {{ $pubTitle }}">{{ .label }}</a>{{ end }}
</span>
{{ end }}
</div>
</article>
{{ end }}