{{- define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end -}} {{- define "content" -}}
{{- /* Title */ -}}

{{ .Title }}

{{- /* Meta */ -}}
{{- /* Featured image */ -}} {{- with .Params.featuredImage -}} {{- end -}} {{- /* TOC */ -}} {{- if or .Params.toc (and .Site.Params.toc (ne .Params.toc false)) -}}

{{ T "toc" }}

{{- $globalAutoCollapseToc := .Site.Params.autoCollapseToc | default true }}
{{ T "toc" }}
{{- .TableOfContents -}}
{{- end -}} {{- /* Content */ -}}
{{- partial "function/content.html" .Content -}}
{{- /* Footer */ -}} {{- partial "post/footer.html" . -}} {{- /* Comment */ -}}
{{- if ( .Params.comment | default true ) -}} {{- partial "comment.html" . -}} {{- end -}}
{{- end -}}