18 lines
331 B
HTML
Raw Normal View History

2022-01-14 15:45:24 +01:00
{{ $prev := 3000}}
{{range where .Site.RegularPages "Section" "posts"}}
{{if .Date}}
{{if gt $prev (.Date.Format "2006")}}
## {{ .Date.Format "2006" }}
{{end}}
{{.Date.Format "02. Jan"}} -- [{{.Title}}]({{.Permalink}})
<div class="post-summary">
{{.Summary}}
</div>
{{ $prev = .Date.Format "2006"}}
{{end}}
{{end}}