Hugo-theme-stack/layouts/_default/archives.html

34 lines
1.2 KiB
HTML
Raw Normal View History

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
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
{{ range $pages.GroupByDate "2006" }}
{{ $id := lower (replace .Key " " "-") }}
2020-09-13 05:22:47 -04:00
<div class="archives-group" id="{{ $id }}">
<h2 class="archives-date section-title"><a href="{{ $.RelPermalink }}#{{ $id }}">{{ .Key }}</a></h2>
<div class="article-list--compact">
{{ range .Pages }}
{{ partial "article-list/compact" . }}
{{ end }}
2020-08-22 07:20:08 -04:00
</div>
</div>
{{ end }}
2020-08-22 07:20:08 -04:00
{{ partialCached "footer/footer" . }}
{{ end }}