{{- partial "meta.html" . }} {{ if and .Title (not (eq .Title .Site.Title)) }}{{ .Title }} {{ default "::" .Site.Params.titleSeparator }} {{ end}}{{ .Site.Title }} {{- if not (and .Title (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableSeoHiddenPages true) ) ) }} {{- else }} {{- range .AlternativeOutputFormats }} {{- if ne .Name "JSON" }} {{- end }} {{- end }} {{- end }} {{- if and (ne .Site.Params.disableSeoHiddenPages true) (ne .Site.Params.disableSearchHiddenPages true) }} {{- range .AlternativeOutputFormats }} {{- if eq .Name "JSON" }} {{- end }} {{- end }} {{- end }} {{- partial "favicon.html" . }} {{- partial "stylesheet.html" . }} {{- partial "custom-header.html" . }} {{- partial "menu.html" . }}
{{- $showPrevNext := (and (not .Params.disableNextPrev) (not .Site.Params.disableNextPrev)) }} {{- if $showPrevNext }} {{- $parent := .Parent }} {{- $ispublished := true }} {{- if $parent }} {{- $ispublished = gt (int (len $parent.Permalink)) 0 }} {{- end }} {{- end }} {{- if .Site.Params.editURL }} {{- $File := .File }} {{- $Site := .Site }} {{- if $File }} {{- with $File.Path }} {{- end }} {{- end }} {{- end }} {{- $defaultDisableToc := .Site.Params.disableToc | default false }} {{- $currentDisableToc := .Params.disableToc | default $defaultDisableToc }} {{- $hastoc := not (eq 0 (int (len (.TableOfContents | plainify)))) }} {{- $toc := (and $hastoc (not $currentDisableToc) (not .Params.chapter)) }} {{- if $toc }} {{- partial "toc.html" . }} {{- end }}
{{- partial "tags.html" . }}
{{- if and (not .IsHome) (not .Params.chapter) }}

{{ if eq .Kind "term" }}{{ .Data.Singular | humanize }} {{ default "::" .Site.Params.titleSeparator }} {{ end }}{{ .Title }}

{{- end }} {{- define "breadcrumb" }} {{- $parent := .page.Parent }} {{- $ispublished := gt (int (len .page.Permalink)) 0 }} {{- $depth := .depth }} {{- if $ispublished }} {{- $depth = add $depth 1 }} {{- end }} {{- if $parent }} {{- template "breadcrumb" dict "page" $parent "depth" $depth }} {{- end }} {{- if $ispublished }}
  • {{if .page.Title}}{{ .page.Title }}{{else}}{{ .page.Site.Title }}{{end}}{{ if .depth }} > {{ end }}
  • {{- end }} {{- end }}