{{ partial "header.html" . }}

{{ .Title | markdownify }}

{{ with .Params.author }}

By: {{ . }}

{{ end }} {{ if (gt .Date 0) }}

Published: {{ .Date.Format "2006/01/02" }}

{{ end }} {{ if (gt .Lastmod 0) }}

Last Modified: {{ .Lastmod.Format "2006/01/02" }}

{{ end }}

{{ range $i := (slice "categories" "tags") }} {{ with ($.Param $i) }} {{ $i | title }}: {{ range $k := . }}{{$k}} {{ end }} {{ end }} {{ end }}

{{ if .Params.toc }} {{ .TableOfContents }} {{ end }}
{{ .Content }}
{{ range first 1 (where (where .Site.Pages ".Params.tags" "intersect" .Params.tags) "Permalink" "!=" .Permalink) }} {{ $.Scratch.Set "has_related" true }} {{ end }} {{ if $.Scratch.Get "has_related" }}

See Also

Back to top {{ end }} {{ partial "footer.html" . }}