1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 10:38:26 -04:00

19 lines
585 B
HTML

{{ partial "header.html" . }}
{{ partial "blog-header.html" . }}
<main id="archive">
{{- range (where .Site.RegularPages "Type" "notes").GroupByDate "2006" }}
<section class="year">
<h2>{{ .Key }}</h2>
<ul>
{{- range .Pages }}
<li>
<div class="date">{{ .Date.Format "Jan 2" }}</div>
<div class="title"><a href="{{ .Permalink }}">{{ .Title }}</a></div>
</li>
{{- end }}
</ul>
</section>
{{- end }}
</main>
{{ partial "blog-footer.html" . }}
{{ partial "footer.html" . }}