{{ .Title }}
{{- with .Params.subtitle -}}{{ . }}
{{- end -}} {{- /* Meta */ -}} {{- /* Featured image */ -}} {{- with .Params.featuredImage -}}
{{- partial "plugin/image.html" (dict "src" . "alt" $.Description "large" true) -}}
{{- end -}}
{{- /* Static TOC */ -}}
{{- if or .Params.toc (and .Site.Params.toc (ne .Params.toc false)) -}}
{{ T "contents" }}
{{- $toc := .TableOfContents -}}
{{- $toc = partial "function/fontawesome.html" $toc -}}
{{- $toc = partial "function/ruby.html" $toc -}}
{{- $toc | safeHTML -}}
{{- partial "function/content.html" .Content | safeHTML -}}
{{- /* Footer */ -}}
{{- partial "single/footer.html" . -}}
{{- /* Comment */ -}}
{{- if ( .Params.comment | default true ) -}}
{{- partial "comment.html" . -}}
{{- end -}}