hugo-theme-more-contentful/layouts/partials/header.html

14 lines
390 B
HTML

<header aria-label="Site header">
<nav>
<a class="site__title" href="{{ "" | absLangURL }}">{{ $.Site.Title }}</a>
<div class="list site__links">
{{ with $.Site.Menus.main }}
{{ range . -}}
<a href="{{ .URL | absLangURL }}">{{- .Name -}}</a>
{{ end }}
{{ end }}
</div>
</nav>
{{- partial "components/theme-button.html" . }}
</header>