Show month and year in item lists
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 8s

This commit is contained in:
Akshay Kolli
2026-07-03 10:53:14 -07:00
parent 303f095d39
commit 76194d036c
4 changed files with 16 additions and 5 deletions

View File

@@ -1,10 +1,16 @@
{{ with . }}
<div class="item-list">
{{ range sort . "year" "desc" }}
{{ range sort . "date" "desc" }}
{{ $pubTitle := .title }}
{{ $authors := .authors }}
<article class="item-row">
<div class="item-year">{{ .year }}</div>
<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>