2020-09-13 05:22:47 -04:00
|
|
|
{{ define "body-class" }}template-archives{{ end }}
|
2020-08-22 07:20:08 -04:00
|
|
|
{{ define "main" }}
|
2020-09-12 04:33:53 -04:00
|
|
|
{{ $categories := ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
|
|
|
|
{{ if $categories }}
|
2020-10-12 14:49:56 -04:00
|
|
|
<h2 class="section-title">Categories</h2>
|
|
|
|
<div class="category-list">
|
|
|
|
<div class="article-list--tile">
|
|
|
|
{{ range $categories }}
|
|
|
|
{{ partial "article-list/tile" (dict "context" . "size" "250x150" "Type" "taxonomy") }}
|
|
|
|
{{ 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
|
|
|
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
|
|
|
|
{{ $notHidden := where .Site.RegularPages "Params.hidden" "!=" true }}
|
|
|
|
{{ $filtered := ($pages | intersect $notHidden) }}
|
2020-09-06 07:15:38 -04:00
|
|
|
|
2020-09-12 04:33:53 -04:00
|
|
|
{{ range $filtered.GroupByDate "2006" }}
|
|
|
|
{{ $id := lower (replace .Key " " "-") }}
|
2020-09-13 05:22:47 -04:00
|
|
|
<div class="archives-group" id="{{ $id }}">
|
2020-10-12 14:49:56 -04:00
|
|
|
<h2 class="archives-date section-title"><a href="{{ $.Permalink }}#{{ $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-08-22 07:20:08 -04:00
|
|
|
{{ end }}
|