hugo-theme-contentful/layouts/partials/header.html
2020-05-09 15:19:04 +08:00

11 lines
572 B
HTML

<nav aria-labelledby="primary-navigation">
<a class="site__title" href="{{ $.Site.BaseURL }}">{{ $.Site.Title }}</a>
<div class="site__links">
|
{{ range $.Site.Menus.main -}}
<a href="{{ .URL | absURL }}">{{ .Name }}</a> |
{{ end }}
</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>