{{ define "main" }}

{{ .Title | markdownify}}

{{ if .Params.Subtitle }}

{{ .Params.Subtitle | markdownify }}

{{ end }}

Published {{ .Date.Format "January 2, 2006" }} {{ range .Params.tags }} #{{ . }} {{ end }}

{{ .Content }}
{{ if or .NextInSection .PrevInSection }}

Read next

{{ if .PrevInSection }} Previous Post: {{with .PrevInSection}}{{ .Title | markdownify }}{{ end }} {{ end }}
{{ if .NextInSection }} Next Post: {{with .NextInSection}}{{ .Title | markdownify }}{{ end }} {{ end }}
{{ end }} {{ $related := .Site.RegularPages.Related . | first 3 }} {{ with $related }}

See also

{{ range . }}

{{ .Title | markdownify}}

{{ if .Params.Subtitle }}

{{ .Params.Subtitle | markdownify }}

{{ end }}

{{ .Summary }}

Read more
{{ end }}
{{ end }} {{ end }}