{{ if or (or (and .IsHome .Site.Params.displayHeaderInHome) (eq .Site.Params.headerLayout "flex")) (and (not .IsHome) .Site.Params.enableHeader) }}
{{ if eq .Site.Params.headerLayout "flex" }}
{{ template "site-brand" . }} {{ partial "menu.html" . }} {{ partial "custom/header.html" . }}
{{ partial "components/nav-toggle.html" . }} {{ else }} {{ template "site-brand" . }} {{ end }}
{{ end }} {{ define "site-brand" }}
{{ if .Site.Params.siteBrandSVG }} {{ partial "utils/icon.html" (dict "$" . "name" "brand") }} {{ else }} {{ .Site.Title }} {{ end }}
{{ end }}