{{ "" | safeHTML }}
{{/*
skipper/bypass block [KB] */}}
{{/*
site banner */}}
{{- $logoMark := site.Params.logo.logoMark }}
{{- $logoType := site.Params.logo.logoType }}
{{- $siteTitle := or site.Title site.Params.Title }}
{{- if or $logoType $logoMark }}
{{- with site.Params.logo.logoMarkDark }}
{{- end }}
{{- with $logoMark }}
{{- end }}
{{- if or $logoType (not $logoMark) }}
{{ partialCached "header/logotype.html" . }}
{{- end }}
{{- end }}
{{/*
top nav */}}
{{ i18n "nav" }}
{{- /*--------------------- end of header.html ---------------------*/}}
{{- define "partials/main/header.html" -}}
{{ "" | safeHTML }}
{{- if not .IsHome }}
{{/*
action menu */}}
{{ partial "nav/menu.html" . }}
{{/*
breadcrumb */}}
{{- $minVersion := index ( split hugo.Version "." ) 1 }}
{{- if lt $minVersion 109 }}
{{ partial "legacy/breadcrumb.html" . }}
{{- else }}
{{ partial "nav.html" ( dict "navID" "breadcrumb" "page" . )}}
{{- end }}
{{- end }}
{{- end }}
{{- define "partials/header/logotype.html" -}}
{{ "" | safeHTML }}
{{- $siteTitle := or site.Title site.Params.Title }}
{{- with $siteTitle -}}
{{- $estimatedWidth := printf "%dpt" (mul (len . ) 28) -}}
{{- end }}
{{- end }}