{{ define "main"}} {{ partial "header.html" . }}
{{ partial "search.html" . }} {{ partial "tags/all.html" . }}
{{ $posts := where site.RegularPages "Type" "blog" }} {{ $postCount := len $posts }} {{ range last 1 $posts }} {{ $tags := .Site.Taxonomies.tags }}
Hello! This page contains {{ $postCount | lang.NumFmt 0 }} posts written in the past {{ div (sub now.Unix .Date.Unix) 31536000 }} years spanning {{ len $tags }} topics within the dropdown above.
{{ end }}
{{ $listPageDateFormat := .Site.Params.listPageDateFormat | default "January, 2006"}} {{ range $index, $value := .Pages.GroupByDate $listPageDateFormat }} {{ if (ne $index 0) }}
{{ end }}

{{ .Key }}

{{ range .Pages }}

{{ .Title }}

{{ range .Params.tags }} {{ $name := . }} {{ with $.Site.GetPage (printf "/tags/%s" (. | urlize)) }} #{{ $name }} {{ end }} {{ end }}

{{ end }} {{ end }}
{{ end }}