{{ define "main" }}

{{ .Title }}

{{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }} {{ $publishDate := .PublishDate }} {{ T "publish_date" }} {{ $publishDate.Format $dateFormat }} {{ with .Lastmod }} {{ if gt . $publishDate }}
{{ T "last_updated" }} {{ .Format $dateFormat }} {{ end }} {{ end }}
{{ with .Params.tags }}
{{ T "tags" }}
{{ end }} {{ if ne .Params.toc false }} {{ partial "toc" . }} {{ end }} {{ .Content }}
{{ partial "disqus.html" . }} {{ end }}