Files
website/layouts/partials/publication-list.html
Akshay Kolli 9dda076b56
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 23s
Redesign site and optimize page performance
2026-07-18 19:57:44 -04:00

32 lines
1.0 KiB
HTML

{{ with . }}
<div class="item-list">
{{ range sort . "date" "desc" }}
{{ $pubTitle := .title }}
{{ $authors := .authors }}
<article class="item-row publication-row">
<div class="item-year">
{{ with .date }}
{{ time.Format "Jan 2006" . }}
{{ else }}
{{ .year }}
{{ end }}
</div>
<div class="item-body">
<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 }}
</div>
{{ else }}
<p class="empty-list">No publications yet.</p>
{{ end }}