{{- define "title" -}} {{- .Title -}} {{- end -}} {{- define "main" -}}

{{- .Title -}}

{{/* get all published posts */}} {{- $posts := where .Site.RegularPages "Section" "posts" -}} {{/* loop through posts by year */}} {{- range $posts.GroupByDate "2006" -}} {{/* get year of first post (there will always be at least one) */}} {{- $head := index .Pages 0 -}} {{- $year := $head.Date.Format "2006" -}}

{{- $year -}}

    {{/* loop through posts from this year */}} {{- range .Pages -}}
  • {{/* post link */}} {{- .Title -}} - {{/* post date */}} {{- .Date.Format "January 2, 2006" -}}
  • {{- end -}}
{{- else -}} {{/* no published posts */}} No posts found. {{- end -}}
{{- end -}}