Initial checkin

This commit is contained in:
Pim van Pelt
2022-09-04 14:08:48 +02:00
commit fc0ea29973
110 changed files with 9548 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{{ define "main" }}
<main>
{{- with .Title }}
<h1 class="page-title">{{ . }}</h1>
{{- end }}
{{ with (where site.RegularPages "Type" "in" site.Params.mainSections) }}
{{- $byyear := (where . ".Draft" false).GroupByDate "2006" -}}
{{- range $byyear -}}
<h2>{{ .Key }}</h2>
<ul>
{{ range.Pages }}
<li> <time>{{ .Date.Format "2/1" }}</time>
<span> - </span>
<a href="{{ .Permalink }}">
<span>{{ .Title }}</span>
</a>
</li>
{{ end }}
</ul>
{{- end -}}
{{ end }}
</main>
{{ end }}