{{- define "main" -}} {{ $homepage := "Home" }} {{ with .Site.Menus.nav }} {{ range first 1 . }} {{ $homepage = .Name }} {{ end }} {{ end }}
{{ .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 }}