1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 16:50:30 -04:00

22 lines
511 B
HTML

{{ define "main" }}
<div class="layout layout-list">
{{- with .Pages }}
{{- range .GroupByDate "2006" }}
<section class="list-section-year">
<h2>{{ .Key }}</h2>
<ul>
{{- with .Pages }}
{{- range . }}
<li>
<div class="list-item-date">{{ .Date.Format "Jan 2" }}</div>
<div class="list-item-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></div>
</li>
{{- end }}
{{- end }}
</ul>
</section>
{{- end }}
{{- end }}
</div>
{{ end }}