{{ define "main"}} {{ partial "header.html" . }}
{{ $posts := where site.RegularPages "Type" "blog" }} {{ $postCount := len $posts }} {{ range last 1 $posts }} {{ $tags := .Site.Taxonomies.tags }}
Here you'll find {{ $postCount | lang.NumFmt 0 }} posts written spanning {{ len $tags }} topics.
{{ end }}
{{ .Content }}
{{ partial "footer.html" . }} {{ end }}