Files
website/layouts/partials/publication-list.html

20 lines
562 B
HTML
Raw Permalink Normal View History

2026-07-02 00:28:25 -07:00
{{ 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 }}