Files
paige-hugo/layouts/partials/paige/header.html
2023-02-06 21:21:33 -08:00

22 lines
561 B
HTML

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