2019-08-22 20:01:22 +02:00
|
|
|
{{ define "title" }}{{ T .Section | default (humanize .Section) }} | {{ .Site.Title }}{{ end -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
|
2019-08-18 19:36:52 +02:00
|
|
|
{{ define "content" -}}
|
|
|
|
{{ $data := .Data -}}
|
2019-08-10 21:26:03 +02:00
|
|
|
<div class="post-warp archive">
|
2019-08-18 19:36:52 +02:00
|
|
|
<h2 class="post-title">
|
2019-08-22 20:01:22 +02:00
|
|
|
{{ printf "%s%s" (T "all") (T .Section | default (humanize .Section)) }}
|
2019-08-10 21:26:03 +02:00
|
|
|
</h2>
|
2019-08-18 19:36:52 +02:00
|
|
|
{{- range (.Paginate (.Pages.GroupByDate "2006")).PageGroups -}}
|
|
|
|
<h3>{{ .Key }}</h3>
|
|
|
|
{{- range .Pages -}}
|
|
|
|
<article class="archive-item">
|
|
|
|
<a href="{{ .RelPermalink }}" class="archive-item-link">{{ .Title }}</a>
|
|
|
|
<span class="archive-item-date">
|
|
|
|
{{- .Date.Format (.Site.Params.dateFormatToUse | default "01-02") -}}
|
|
|
|
</span>
|
|
|
|
</article>
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- partial "paginator.html" . -}}
|
2019-08-10 21:26:03 +02:00
|
|
|
</div>
|
2019-08-18 19:36:52 +02:00
|
|
|
{{- end }}
|