{{ define "main" }}

archive

{{- $.Scratch.Add "year" "" -}} {{- $.Scratch.Add "month" "" -}} {{- range where site.Pages "Section" "posts" -}} {{- if and (not .Draft) .Date -}} {{- $year := .Date.Format "2006" -}} {{- $month := .Date.Format "January" -}} {{- if ne $year ($.Scratch.Get "year") -}} {{- $.Scratch.Set "year" $year -}} {{- $.Scratch.Set "month" "" -}}

{{ $year }}

{{- end -}} {{- if ne $month ($.Scratch.Get "month") -}} {{- $.Scratch.Set "month" $month -}}

{{ $month }}

{{- end -}}
{{ .Title }}
{{- end -}} {{- end -}}
{{ end }}