2020-09-13 05:22:47 -04:00
|
|
|
{{ define "body-class" }}template-archives{{ end }}
|
2020-08-22 07:20:08 -04:00
|
|
|
{{ define "main" }}
|
2022-03-03 17:11:19 -05: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 07:20:08 -04:00
|
|
|
</div>
|
2022-03-03 17:11:19 -05:00
|
|
|
{{ end }}
|
|
|
|
</header>
|
2020-08-22 07:20:08 -04:00
|
|
|
|
2020-09-12 04:33:53 -04:00
|
|
|
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
|
2022-10-29 11:14:19 -04:00
|
|
|
{{ $notHidden := where .Site.RegularPages "Params.hidden" "!=" true }}
|
|
|
|
{{ $filtered := ($pages | intersect $notHidden) }}
|
|
|
|
|
|
|
|
{{ range $filtered.GroupByDate "2006" }}
|
2020-09-12 04:33:53 -04:00
|
|
|
{{ $id := lower (replace .Key " " "-") }}
|
2020-09-13 05:22:47 -04:00
|
|
|
<div class="archives-group" id="{{ $id }}">
|
2020-10-31 18:24:58 -04:00
|
|
|
<h2 class="archives-date section-title"><a href="{{ $.RelPermalink }}#{{ $id }}">{{ .Key }}</a></h2>
|
2020-09-12 04:33:53 -04:00
|
|
|
<div class="article-list--compact">
|
|
|
|
{{ range .Pages }}
|
|
|
|
{{ partial "article-list/compact" . }}
|
|
|
|
{{ end }}
|
2020-08-22 07:20:08 -04:00
|
|
|
</div>
|
2020-09-12 04:33:53 -04:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
2020-08-22 07:20:08 -04:00
|
|
|
|
2020-09-12 04:33:53 -04:00
|
|
|
{{ partialCached "footer/footer" . }}
|
2020-12-11 10:11:47 -05:00
|
|
|
{{ end }}
|