forked from Bunteshaus/bunteshaus.de
15 lines
706 B
HTML
15 lines
706 B
HTML
|
|
{{ partial "debug" (dict "context" . "caller" "archive.html" )}}
|
|
{{ $prev := 3000}}
|
|
{{range where site.RegularPages "Type" "in" site.Params.searchSections }}
|
|
{{ $date := .Date }}
|
|
{{ if gt $prev ($date.Format "2006") }}
|
|
<h2>{{ $date.Format "2006" }}</h2>
|
|
{{end}}
|
|
<div class="frow">
|
|
<div class="underline" style="margin-right: 1em;"><a href="{{.Permalink}}">{{ .Title }}</a></div>
|
|
<div class="frow" style="margin-right: 1em;">{{- $date.Format "02" }}. {{ if $date.Format "Jan" | i18n }}{{ $date.Format "Jan" | i18n -}}{{- else -}} {{- $date.Format "Jan" -}}{{- end }} {{ $date.Format "2006 15:04" }}</div><br>
|
|
</div>
|
|
{{ $prev = $date.Format "2006"}}
|
|
{{end}}
|