{{ define "main" -}}

{{ .Title }}

{{ with .Params.Subtitle -}}

{{ . }}

{{ end -}}
{{ if .Date -}}
{{ .Date.Format (.Site.Params.dateFormat | default "2006-01-02 15:04") }}
{{ end -}} {{ $taxo := "tags" -}} {{ if .Param $taxo -}}
{{ $data := newScratch }} {{ range .Param $taxo -}} {{ $name := . -}} {{ with $.Site.GetPage (printf "/%s/%s" $taxo ($name | anchorize)) }} {{ $data.Set "url" .Permalink }} {{ end }} {{ with $.Site.GetPage (printf "/%s/%s" $taxo ($name | urlize)) }} {{ $data.Set "url" .Permalink }} {{ end }} {{ end -}}
{{ end -}}
{{ if ne .TableOfContents "" }} {{ .TableOfContents }}
{{ .Content -}}
{{ else }}
{{ .Content -}}
{{ end }}
{{ end -}}