34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
{{ define "body-class" }}template-archives{{ end }}
|
|
{{ define "main" }}
|
|
<header>
|
|
{{- $taxonomy := $.Site.GetPage "taxonomyTerm" "categories" -}}
|
|
{{- $terms := $taxonomy.Pages -}}
|
|
{{ if $terms }}
|
|
<h2 class="section-title">{{ T "widget.categoriesCloud.title" }}</h2>
|
|
<div class="subsection-list">
|
|
<div class="article-list--tile">
|
|
{{ range $terms }}
|
|
{{ partial "article-list/tile" . }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</header>
|
|
|
|
{{ $pages := partial "helper/pages.html" .Site.Home }}
|
|
|
|
{{ range $pages.GroupByDate "2006" }}
|
|
{{ $id := lower (replace .Key " " "-") }}
|
|
<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 }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ partialCached "footer/footer" . }}
|
|
{{ end }}
|