{{ .Hugo.Generator }} {{ partial "meta.html" . }}
{{ .Title }} :: {{ .Site.Title }}
{{with .Site.Params.themeStyle}}
{{else}}
{{end}} {{with .Site.Params.themeVariant}}
{{end}}
{{ partial "custom-head.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 -}}
{{ template "breadcrumb" dict "page" . "value" .Title }}
{{ partial "toc.html" . }}
{{end}} {{if .Params.tags }}
{{ range $index, $tag := .Params.tags }}
{{ $tag }}
{{ end }}
{{end}}
{{if not .IsHome}}
{{.Title}}
{{end}} {{define "breadcrumb"}} {{ if .page.Parent}} {{$value := (printf "
%s
> %s" .page.Parent.URL .page.Parent.Title .value)}} {{ template "breadcrumb" dict "page" .page.Parent "value" $value }} {{else}} {{.value|safeHTML}} {{end}} {{end}}