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

11 lines
301 B
HTML
Raw Normal View History

2022-04-30 07:47:35 +00:00
<nav aria-label="Site header">
<a class="site__title" href="{{ "" | absLangURL }}">{{ $.Site.Title }}</a>
<div class="list site__links">
{{ with $.Site.Menus.main }}
2020-11-05 05:54:38 +00:00
{{ range . -}}
<a href="{{ .URL | absLangURL }}">{{- .Name -}}</a>
{{ end }}
{{ end }}
</div>
2020-11-05 05:54:38 +00:00
</nav>