mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 05:38:26 -04:00
22 lines
484 B
HTML
22 lines
484 B
HTML
{{ define "main" }}
|
|
<main id="list">
|
|
{{- with (where .Site.RegularPages "Type" "notes") }}
|
|
{{- range .GroupByDate "2006" }}
|
|
<section class="year">
|
|
<h2>{{ .Key }}</h2>
|
|
<ul>
|
|
{{- with .Pages }}
|
|
{{- range . }}
|
|
<li>
|
|
<div class="date">{{ .Date.Format "Jan 2" }}</div>
|
|
<div class="title"><a href="{{ .Permalink }}">{{ .Title }}</a></div>
|
|
</li>
|
|
{{- end }}
|
|
{{- end }}
|
|
</ul>
|
|
</section>
|
|
{{- end }}
|
|
{{- end }}
|
|
</main>
|
|
{{ end }}
|