hugo-PaperMod/layouts/_default/archives.html

50 lines
1.4 KiB
HTML
Raw Normal View History

{{- define "main" }}
2020-09-20 13:30:45 +02:00
<header class="page-header">
<h1>{{ .Title }}</h1>
{{- if .Description }}
<div class="post-description">
{{ .Description }}
</div>
{{- end }}
2020-09-20 13:30:45 +02:00
</header>
{{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{- if .Site.Params.ShowAllPagesInArchive }}
{{- $pages = site.RegularPages }}
{{- end }}
{{- range $pages.GroupByPublishDate "2006" }}
{{- if ne .Key "0001" }}
2020-09-20 13:30:45 +02:00
<div class="archive-year">
<h2 class="archive-year-header">
{{- replace .Key "0001" "" }}<sup class="archive-count">&nbsp;&nbsp;{{ len .Pages }}</sup>
</h2>
{{- range .Pages.GroupByDate "January" }}
2020-09-20 13:30:45 +02:00
<div class="archive-month">
<h3 class="archive-month-header">{{- .Key }}<sup class="archive-count">&nbsp;&nbsp;{{ 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 }}
{{- if eq .Kind "page" }}
2020-09-20 13:30:45 +02:00
<div class="archive-entry">
<h3 class="archive-entry-title">
{{- .Title | markdownify }}
2021-09-04 08:33:12 +02:00
{{- if .Draft }}<sup><span class="entry-isdraft">&nbsp;&nbsp;[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" . -}}
</div>
2020-09-20 13:30:45 +02:00
<a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a>
</div>
{{- end }}
{{- end }}
</div>
</div>
{{- end }}
</div>
{{- end }}
{{- end }}
2020-09-20 13:30:45 +02:00
2021-03-30 14:37:36 +02:00
{{- end }}{{/* end main */}}