{{ define "main" }}

{{ .Title | markdownify }}

{{ $authors := .Params.authors | default (slice .Site.Params.defaultAuthor) }}

{{ index $authors 0 }}

{{ if .Params.date }}

{{ .Date.Format "Mon | Jan 2, 2006" }}

{{ end }} {{ range (.GetTerms "tags") }} {{ .LinkTitle }} {{ end}} {{ .Params.featured.alt }}
{{ if .Params.toc }} {{ .TableOfContents }} {{ end }}
{{ .Content }} {{ with .NextInSection }}

Next: {{ .Title | markdownify }}

{{ end }} {{ with .PrevInSection }}

Previous: {{ .Title | markdownify }}

{{ end }}
>> Home
{{ end }}