2020-09-13 11:22:47 +02:00
|
|
|
{{ define "body-class" }}template-archives{{ end }}
|
2020-08-22 13:20:08 +02:00
|
|
|
{{ define "main" }}
|
2022-03-03 23:11:19 +01:00
|
|
|
<header>
|
|
|
|
{{- $taxonomy := $.Site.GetPage "taxonomyTerm" "categories" -}}
|
|
|
|
{{- $terms := $taxonomy.Pages -}}
|
|
|
|
{{ if $terms }}
|
|
|
|
<h2 class="section-title">{{ $taxonomy.Title }}</h2>
|
|
|
|
<div class="subsection-list">
|
|
|
|
<div class="article-list--tile">
|
|
|
|
{{ range $terms }}
|
|
|
|
{{ partial "article-list/tile" (dict "context" . "size" "250x150" "Type" "taxonomy") }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2020-08-22 13:20:08 +02:00
|
|
|
</div>
|
2022-03-03 23:11:19 +01:00
|
|
|
{{ end }}
|
|
|
|
</header>
|
2020-08-22 13:20:08 +02:00
|
|
|
|
2020-09-12 10:33:53 +02:00
|
|
|
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
|
2022-10-29 17:14:19 +02:00
|
|
|
{{ $notHidden := where .Site.RegularPages "Params.hidden" "!=" true }}
|
|
|
|
{{ $filtered := ($pages | intersect $notHidden) }}
|
|
|
|
|
|
|
|
{{ range $filtered.GroupByDate "2006" }}
|
2020-09-12 10:33:53 +02:00
|
|
|
{{ $id := lower (replace .Key " " "-") }}
|
2020-09-13 11:22:47 +02:00
|
|
|
<div class="archives-group" id="{{ $id }}">
|
2020-10-31 23:24:58 +01:00
|
|
|
<h2 class="archives-date section-title"><a href="{{ $.RelPermalink }}#{{ $id }}">{{ .Key }}</a></h2>
|
2020-09-12 10:33:53 +02:00
|
|
|
<div class="article-list--compact">
|
|
|
|
{{ range .Pages }}
|
|
|
|
{{ partial "article-list/compact" . }}
|
|
|
|
{{ end }}
|
2020-08-22 13:20:08 +02:00
|
|
|
</div>
|
2020-09-12 10:33:53 +02:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
2020-08-22 13:20:08 +02:00
|
|
|
|
2020-09-12 10:33:53 +02:00
|
|
|
{{ partialCached "footer/footer" . }}
|
2020-12-11 16:11:47 +01:00
|
|
|
{{ end }}
|