{{ define "main" }}
{{ partial "sidebar.html" (dict "context" . "disableSidebar" true "displayPlaceholder" true) }} {{ partial "toc.html" . }}
{{ partial "breadcrumb.html" . }}

{{ .Title }}

{{ with $date := .Date }}
{{ partial "utils/format-date" $date }} {{- if $.Params.authors }} by {{ end -}} {{- with $.Params.authors -}} {{- range $i, $author := . -}} {{- if $i }},{{ end -}} {{- if $author.link -}} {{ $author.name }} {{- else -}} {{ $author.name }} {{- end -}} {{- end -}} {{- end -}}
{{ end }}
{{ .Content }}
{{ partial "components/last-updated.html" . }} {{ .Scratch.Set "reversePagination" true }} {{ partial "components/pager.html" . }}
{{ end }}