{{ 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}} {{ partial "responsive-image.html" (dict "context" .Params.featured "class" "shadow large-image") }}
{{ if .Params.toc }} {{ .TableOfContents }} {{ end }}
{{ .Content }} {{ with .NextInSection }}

Next: {{ .Title | markdownify }}

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

Previous: {{ .Title | markdownify }}

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