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 }}
|
2025-11-01 21:30:37 +01:00
|
|
|
<h2 class="section-title">{{ T "widget.categoriesCloud.title" }}</h2>
|
2022-03-03 23:11:19 +01:00
|
|
|
<div class="subsection-list">
|
|
|
|
|
<div class="article-list--tile">
|
|
|
|
|
{{ range $terms }}
|
2026-03-05 18:15:05 +01:00
|
|
|
{{ partial "article-list/tile" . }}
|
2022-03-03 23:11:19 +01:00
|
|
|
{{ 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
|
|
|
|
2026-01-27 12:34:15 +01:00
|
|
|
{{ $pages := partial "helper/pages.html" .Site.Home }}
|
2022-10-29 17:14:19 +02:00
|
|
|
|
2026-01-27 12:00:40 +01:00
|
|
|
{{ range $pages.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 }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
{{ partialCached "footer/footer" . }}
|
2020-12-11 12:11:47 -03:00
|
|
|
{{ end }}
|