{{ .Hugo.Generator }} {{ partial "meta.html" . }} {{ partial "favicon.html" . }}
{{ .Title }} :: {{ .Site.Title }}
{{ $assetBusting := not .Site.Params.disableAssetsBusting }}
{{with .Site.Params.themeVariant}}
{{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" . "value" .Title }} {{ 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 "taxonomy" }} {{.Kind}} :: {{ end }} {{.Title}}
{{end}} {{define "breadcrumb"}} {{$parent := .page.Parent }} {{ if $parent }} {{ $value := (printf "
%s
> %s" $parent.URL $parent.Title .value) }} {{ template "breadcrumb" dict "page" $parent "value" $value }} {{else}} {{.value|safeHTML}} {{end}} {{end}}