2020-01-31 15:53:04 +01:00
|
|
|
{{- define "title" }}
|
2020-03-08 14:02:21 +01:00
|
|
|
{{- T .Section | default .Section | printf (T "allSome") }} | {{ .Site.Title -}}
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
|
2020-01-31 11:46:28 +01:00
|
|
|
{{- define "content" -}}
|
2020-02-01 12:47:58 +01:00
|
|
|
<div class="page archive">
|
2020-02-03 11:38:10 +01:00
|
|
|
{{- /* Title */ -}}
|
2020-02-13 18:30:33 +01:00
|
|
|
<h2 class="single-title animated pulse faster">
|
2020-03-08 14:02:21 +01:00
|
|
|
{{- T .Section | default .Section | humanize | printf (T "allSome") -}}
|
2019-08-10 21:26:03 +02:00
|
|
|
</h2>
|
2019-08-24 13:32:41 +02:00
|
|
|
|
2020-02-03 11:38:10 +01:00
|
|
|
{{- /* Paginate */ -}}
|
2020-04-21 16:55:06 +02:00
|
|
|
{{- $pages := .Pages.GroupByDate "2006" -}}
|
|
|
|
{{- range (.Site.Params.section.paginate | default .Site.Params.paginate | .Paginate $pages).PageGroups -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
<h3>{{ .Key }}</h3>
|
|
|
|
{{- range .Pages -}}
|
|
|
|
<article class="archive-item">
|
2020-01-31 11:46:28 +01:00
|
|
|
<a href="{{ .RelPermalink }}" class="archive-item-link">
|
|
|
|
{{- .Title -}}
|
|
|
|
</a>
|
2019-08-18 19:36:52 +02:00
|
|
|
<span class="archive-item-date">
|
2020-04-21 16:55:06 +02:00
|
|
|
{{- .Date.Format ($.Site.Params.section.dateFormat | default "01-02") -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
</span>
|
|
|
|
</article>
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- partial "paginator.html" . -}}
|
2019-08-10 21:26:03 +02:00
|
|
|
</div>
|
2020-02-06 17:10:00 +01:00
|
|
|
{{- end -}}
|