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

14 lines
384 B
HTML
Raw Normal View History

2023-02-24 12:22:52 +00:00
<div 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 }}
2020-11-05 05:54:38 +00:00
{{ end }}
2023-02-24 12:22:52 +00:00
</div>
</nav>
{{- partial "components/theme-button.html" . }}
</div>