{{ define "main" }}
{{ partial "brand.html" . }} {{ partial "content.header.html" . }}
{{ range .Data.Pages.GroupByDate "2006" }}
  • {{ .Key }} ({{ len .Pages }})
  • {{ range .Pages.GroupByDate "January" }}
    • {{ .Key }} ({{ len .Pages }})
    • {{ range .Pages }}
      • {{ if .Site.Params.dateFormatShort }} {{ .Date.Format .Site.Params.dateFormatShort }} {{ else }} {{ .Date.Format "Jan 2" }} {{ end }} · {{.Title}}
      {{ end }}
    {{ end }}
{{ end }}
{{ partial "footer.html" . }}
{{ end }}