hugo-theme-more-contentful/layouts/partials/header.html
Gabriel Arazas 1b8b2cbce7 Update list layout and style
Not only does this make some proper RTL styling but also make it more
responsive. The nice separators are gone though. :(
2023-03-16 18:02:42 +08:00

16 lines
434 B
HTML

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