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

11 lines
572 B
HTML
Raw Normal View History

2020-05-09 07:19:04 +00:00
<nav aria-labelledby="primary-navigation">
<a class="site__title" href="{{ $.Site.BaseURL }}">{{ $.Site.Title }}</a>
<div class="site__links">
|
2019-09-20 16:11:12 +00:00
{{ range $.Site.Menus.main -}}
2020-05-09 07:19:04 +00:00
<a href="{{ .URL | absURL }}">{{ .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">{{ i18n "theme_toggle" }}</button>
</nav>