{{- define "main" -}} {{ $homepage := "Home" }} {{ with .Site.Menus.nav }} {{ range first 1 . }} {{ $homepage = .Name }} {{ end }} {{ end }}

{{ $homepage }}

{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }} {{ range $pages.ByPublishDate.Reverse }}

{{ .Title | markdownify }} {{ $customDateFormat := "January 2, 2006" }} {{ with .Site.Params.customDateFormat }}{{ $customDateFormat = . }}{{ end }}
{{ .PublishDate.Format $customDateFormat }} {{ partial "tags" . }} {{ if eq .Site.Params.showPostSummary true }}
{{ .Summary }} {{ end }}

{{ end }} {{- end -}}