mirror of
https://github.com/foo-dogsquared/hugo-theme-more-contentful.git
synced 2025-01-31 04:58:14 +00:00
11 lines
302 B
HTML
11 lines
302 B
HTML
|
<nav aria-label="Primary navigation">
|
||
|
<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>
|