Files
paige-hugo/layouts/partials/paige/header.html
2023-03-19 22:01:46 -07:00

18 lines
452 B
HTML

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