You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
512 B
HTML

{{ $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>
{{ if $first }}
{{ partial "paige/header-first.html" . }}
{{ end }}
{{ if $menu }}
{{ partial "paige/menu.html" . }}
{{ end }}
{{ if $last }}
{{ partial "paige/header-last.html" . }}
{{ end }}
</header>
{{ end }}