2019-08-04 15:53:35 +02:00
|
|
|
{{ define "title" }}{{ T "posts" }} - {{ .Site.Title }}{{ end }}
|
|
|
|
|
2019-02-03 12:30:44 +01:00
|
|
|
{{ define "content" }}
|
|
|
|
{{ $data := .Data }}
|
|
|
|
<div class="post-warp archive">
|
2019-08-04 15:53:35 +02:00
|
|
|
<h2 class="post-title" style="text-align:right;padding-bottom:2em">
|
|
|
|
{{- printf "- %s -" (T "posts") -}}
|
|
|
|
</h2>
|
2019-02-03 12:30:44 +01: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">
|
2019-08-04 15:53:35 +02:00
|
|
|
{{ .Date.Format (.Site.Params.dateFormatToUse | default "01-02") }}
|
2019-02-03 12:30:44 +01:00
|
|
|
</span>
|
|
|
|
</article>
|
|
|
|
{{ end }} {{ end }}
|
|
|
|
{{ partial "paginator.html" . }}
|
|
|
|
</div>
|
2019-08-04 15:53:35 +02:00
|
|
|
{{end }}
|