Files
website/layouts/partials/publication-list.html
Akshay Kolli 76194d036c
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 8s
Show month and year in item lists
2026-07-03 10:53:14 -07:00

26 lines
695 B
HTML

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