2019-08-25 20:25:56 +02:00
|
|
|
{{ define "title" }}{{ T "all" | humanize}}{{ T .Section | default .Section | humanize }} | {{ .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-24 13:32:41 +02:00
|
|
|
<h2 class="post-title animated pulse faster">
|
2019-08-25 20:25:56 +02:00
|
|
|
{{ T "all" | humanize}}{{ T .Section | default .Section | humanize }}
|
2019-08-10 21:26:03 +02:00
|
|
|
</h2>
|
2019-08-24 13:32:41 +02:00
|
|
|
|
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 }}
|