{{- define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end -}} {{- define "content" -}} {{- $scratch := .Scratch.Get "scratch" -}}
{{- /* Title */ -}}

{{ .Title }}

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

{{ T "contents" }}

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