Files
paige-hugo/layouts/partials/paige/header.html
2024-04-09 00:02:36 -07:00

18 lines
561 B
HTML

{{ $page := . }}
{{ if or $page.Ancestors site.Menus.main }}
<header class="my-3" id="paige-header">
{{ if templates.Exists "partials/paige/header-first.html" }}
{{ partial "paige/header-first.html" $page }}
{{ end }}
{{ partial "paige/site.html" $page }}
{{ partial "paige/menu.html" $page }}
{{ partial "paige/breadcrumbs.html" . }}
{{ if templates.Exists "partials/paige/header-last.html" }}
{{ partial "paige/header-last.html" $page }}
{{ end }}
</header>
{{ end }}