{{.Title}}
{{ with .Params.subtitle }} {{.}} {{ end }}
{{.Content}}
{{ range first 10 .Site.RegularPages }}
{{ .Render "summary"}}
{{ end }}
{{ define "main" }}
{{.Title}}
{{ with .Params.subtitle }}
{{.}}
{{ end }}
{{.Content}}
{{ range first 10 .Site.RegularPages }}
{{ .Render "summary"}}
{{ 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 }}