{{ hugo.Generator -}} {{ partial "meta.html" . }} {{ partial "favicon.html" . }}
{{ .Title }} {{ default "::" .Site.Params.titleSeparator }} {{ .Site.Title }}
{{ $assetBusting := not .Site.Params.disableAssetsBusting }}
{{with .Site.Params.themeVariant}}
{{end}} {{ range .Site.Params.custom_css -}}
{{- end }} {{ partial "custom-header.html" . }} {{ partial "menu.html" . }}
{{if not .IsHome}}
{{ if and (or .IsPage .IsSection) .Site.Params.editURL }} {{ $File := .File }} {{ $Site := .Site }} {{with $File.Path }}
{{T "Edit-this-page"}}
{{ end }} {{ end }} {{$toc := (and (not .Params.disableToc) (not .Params.chapter))}}
{{ if $toc }}
{{ end }} {{$showBreadcrumb := (and (not .Params.disableBreadcrumb) (not .Site.Params.disableBreadcrumb))}} {{if $showBreadcrumb}}
{{ template "breadcrumb" dict "page" . "depth" 0 }}
{{ else }}
{{ .Title }}
{{ end }}
{{ if $toc }} {{ partial "toc.html" . }} {{ end }}
{{ end }}
{{ partial "tags.html" . }}
{{ if .Params.chapter }}
{{ end }}
{{if and (not .IsHome) (not .Params.chapter) }}
{{ if eq .Kind "term" }} {{.Data.Singular}} :: {{ end }} {{.Title}}
{{end}} {{define "breadcrumb"}} {{$parent := .page.Parent }} {{$depth := add .depth 1 }} {{ if $parent }} {{ template "breadcrumb" dict "page" $parent "depth" $depth }} {{end}}
{{ .page.Title }}
{{ if .depth }} > {{end}} {{end}}