{{ define "main" }} {{ $paginator := .Paginate (and (where .Site.AllPages "Type" "posts") (where .Site.AllPages "Kind" "page")) }}

{{ .Title }}

{{ if .Content }}
{{ .Content }}
{{ end }} {{ range $paginator.Pages.GroupByDate "2006" }}
{{ .Key }}
{{ end }} {{ partial "pagination.html" . }}
{{ end }}