Files
hugo-theme-stack/layouts/archives.html
T

34 lines
1.1 KiB
HTML
Raw Normal View History

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">{{ T "widget.categoriesCloud.title" }}</h2>
2022-03-03 23:11:19 +01:00
<div class="subsection-list">
<div class="article-list--tile">
{{ range $terms }}
{{ 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
{{ $pages := partial "helper/pages.html" .Site.Home }}
{{ range $pages.GroupByDate "2006" }}
{{ $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>
<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 }}