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

15 lines
819 B
HTML
Raw Normal View History

<nav aria-label="Primary navigation">
2020-05-12 17:41:43 +00:00
<a class="site__title" href="{{ "" | absLangURL }}">{{ $.Site.Title }}</a>
2020-05-09 07:19:04 +00:00
<div class="site__links">
|
2019-09-20 16:11:12 +00:00
{{ range $.Site.Menus.main -}}
2020-05-12 17:41:43 +00:00
<a href="{{ .URL | absLangURL }}">{{ .Name }}</a> |
2019-09-20 16:11:12 +00:00
{{ end }}
2020-05-09 07:19:04 +00:00
</div>
<button class="site__theme-btn" aria-label="theme-toggle" onclick="const theme = window.localStorage.getItem('theme') == 'dark' ? 'light' : 'dark'; window.localStorage.setItem('theme', theme); document.documentElement.dataset.theme = theme">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path d="M0 12c0 6.627 5.373 12 12 12s12-5.373 12-12-5.373-12-12-12-12 5.373-12 12zm2 0c0-5.514 4.486-10 10-10v20c-5.514 0-10-4.486-10-10z"></path>
</svg>
</button>
2020-05-09 07:19:04 +00:00
</nav>