2020-09-23 09:22:32 +02:00
|
|
|
{{- define "main" }}
|
2020-07-22 23:30:51 +02:00
|
|
|
|
2020-09-20 13:30:45 +02:00
|
|
|
<header class="page-header">
|
2023-04-23 16:45:10 +02:00
|
|
|
<h1>
|
|
|
|
{{ .Title }}
|
|
|
|
{{- if (.Param "ShowRssButtonInSectionTermList") }}
|
|
|
|
{{- $rss := (.OutputFormats.Get "rss") }}
|
|
|
|
{{- if (eq .Kind `page`) }}
|
|
|
|
{{- $rss = (.Parent.OutputFormats.Get "rss") }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with $rss }}
|
|
|
|
<a href="{{ .RelPermalink }}" title="RSS" aria-label="RSS">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
|
|
|
|
stroke-linecap="round" stroke-linejoin="round" height="23">
|
|
|
|
<path d="M4 11a9 9 0 0 1 9 9" />
|
|
|
|
<path d="M4 4a16 16 0 0 1 16 16" />
|
|
|
|
<circle cx="5" cy="19" r="1" />
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
</h1>
|
2021-01-27 16:49:21 +01:00
|
|
|
{{- if .Description }}
|
|
|
|
<div class="post-description">
|
|
|
|
{{ .Description }}
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
2020-09-20 13:30:45 +02:00
|
|
|
</header>
|
2020-09-23 09:22:32 +02:00
|
|
|
|
|
|
|
{{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
|
2021-06-17 08:37:15 +02:00
|
|
|
|
2022-03-27 15:14:06 +02:00
|
|
|
{{- if site.Params.ShowAllPagesInArchive }}
|
2021-06-17 08:37:15 +02:00
|
|
|
{{- $pages = site.RegularPages }}
|
|
|
|
{{- end }}
|
|
|
|
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- range $pages.GroupByPublishDate "2006" }}
|
|
|
|
{{- if ne .Key "0001" }}
|
2020-09-20 13:30:45 +02:00
|
|
|
<div class="archive-year">
|
2020-09-29 12:24:39 +02:00
|
|
|
<h2 class="archive-year-header">
|
|
|
|
{{- replace .Key "0001" "" }}<sup class="archive-count"> {{ len .Pages }}</sup>
|
|
|
|
</h2>
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- range .Pages.GroupByDate "January" }}
|
2020-09-20 13:30:45 +02:00
|
|
|
<div class="archive-month">
|
2020-11-29 04:50:56 +01:00
|
|
|
<h3 class="archive-month-header">{{- .Key }}<sup class="archive-count"> {{ len .Pages }}</sup></h3>
|
2020-09-20 13:30:45 +02:00
|
|
|
<div class="archive-posts">
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- range .Pages }}
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- if eq .Kind "page" }}
|
2020-09-20 13:30:45 +02:00
|
|
|
<div class="archive-entry">
|
|
|
|
<h3 class="archive-entry-title">
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- .Title | markdownify }}
|
2021-09-04 08:33:12 +02:00
|
|
|
{{- if .Draft }}<sup><span class="entry-isdraft"> [draft]</span></sup>{{- end }}
|
2020-09-20 13:30:45 +02:00
|
|
|
</h3>
|
|
|
|
<div class="archive-meta">
|
2020-10-20 15:08:29 +02:00
|
|
|
{{- partial "post_meta.html" . -}}
|
2020-07-22 23:30:51 +02:00
|
|
|
</div>
|
2020-09-20 13:30:45 +02:00
|
|
|
<a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a>
|
2020-07-22 23:30:51 +02:00
|
|
|
</div>
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
2020-07-22 23:30:51 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- end }}
|
2020-07-22 23:30:51 +02:00
|
|
|
</div>
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
2020-09-20 13:30:45 +02:00
|
|
|
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- end }}{{/* end main */}}
|