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">
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
</header>
|
2020-09-23 09:22:32 +02:00
|
|
|
|
|
|
|
{{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
|
|
|
|
{{- range $pages.GroupByPublishDate "2006" }}
|
|
|
|
{{- if ne .Key "0001" }}
|
2020-09-20 13:30:45 +02:00
|
|
|
<div class="archive-year">
|
2020-09-23 09:22:32 +02:00
|
|
|
<h2 class="archive-year-header">{{- replace .Key "0001" "" }}</h2>
|
|
|
|
{{- range .Pages.GroupByDate "January" }}
|
2020-09-20 13:30:45 +02:00
|
|
|
<div class="archive-month">
|
2020-09-23 09:22:32 +02:00
|
|
|
<h3 class="archive-month-header">{{- .Key }}</h3>
|
2020-09-20 13:30:45 +02:00
|
|
|
<div class="archive-posts">
|
2020-09-23 09:22:32 +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">
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- .Title | markdownify }}
|
2020-09-20 13:30:45 +02:00
|
|
|
</h3>
|
|
|
|
<div class="archive-meta">
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- if or .Params.author .Site.Params.author }}
|
|
|
|
{{- .Params.author | default .Site.Params.author }} ·
|
|
|
|
{{- end }}
|
|
|
|
{{- if $.Site.Params.ShowReadingTime }}
|
|
|
|
{{ .ReadingTime }}{{ i18n "read_time" | default "min read" }} · {{ end }}
|
2020-09-20 13:30:45 +02:00
|
|
|
{{- .Date.Format "January 2, 2006" -}}
|
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
|
|
|
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- end }}{{/* end main */}}
|