2020-11-26 04:40:24 +01:00
|
|
|
{{- /* theme-toggle is enabled */}}
|
|
|
|
{{- if (not .Site.Params.disableThemeToggle) }}
|
|
|
|
{{- /* theme is light */}}
|
2020-11-04 09:34:45 +01:00
|
|
|
{{- if (eq .Site.Params.defaultTheme "light") }}
|
2020-09-17 11:58:03 +02:00
|
|
|
<script>
|
2020-10-04 17:13:24 +02:00
|
|
|
if (localStorage.getItem("pref-theme") === "dark") {
|
2020-09-17 11:58:03 +02:00
|
|
|
document.body.classList.add('dark');
|
|
|
|
}
|
2020-10-26 17:49:05 +01:00
|
|
|
|
2020-09-17 11:58:03 +02:00
|
|
|
</script>
|
2020-11-26 04:40:24 +01:00
|
|
|
{{- /* theme is dark */}}
|
2020-11-04 09:34:45 +01:00
|
|
|
{{- else if (eq .Site.Params.defaultTheme "dark") }}
|
2020-10-05 11:03:48 +02:00
|
|
|
<script>
|
2020-11-26 04:40:24 +01:00
|
|
|
if (localStorage.getItem("pref-theme") === "light") {
|
2020-11-04 09:34:45 +01:00
|
|
|
document.body.classList.remove('dark')
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
2020-11-26 04:40:24 +01:00
|
|
|
{{- else }}
|
|
|
|
{{- /* theme is auto */}}
|
2020-11-04 09:34:45 +01:00
|
|
|
<script>
|
|
|
|
if (localStorage.getItem("pref-theme") === "dark") {
|
|
|
|
document.body.classList.add('dark');
|
|
|
|
} else if (localStorage.getItem("pref-theme") === "light") {
|
|
|
|
document.body.classList.remove('dark')
|
|
|
|
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
2020-10-05 11:03:48 +02:00
|
|
|
document.body.classList.add('dark');
|
|
|
|
}
|
2020-10-26 17:49:05 +01:00
|
|
|
|
2020-10-05 11:03:48 +02:00
|
|
|
</script>
|
|
|
|
{{- end }}
|
2020-11-26 04:40:24 +01:00
|
|
|
{{- /* theme-toggle is disabled and theme is auto */}}
|
|
|
|
{{- else if (and (ne .Site.Params.defaultTheme "light") (ne .Site.Params.defaultTheme "dark"))}}
|
|
|
|
<script>
|
|
|
|
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
|
|
document.body.classList.add('dark');
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
{{- end }}
|
2020-10-05 10:37:23 +02:00
|
|
|
<noscript>
|
|
|
|
<style type="text/css">
|
2021-02-12 06:19:03 +01:00
|
|
|
#theme-toggle,
|
2020-10-05 10:37:23 +02:00
|
|
|
.top-link {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-03-25 06:25:11 +01:00
|
|
|
|
|
|
|
</style>
|
|
|
|
{{- if (and (ne .Site.Params.defaultTheme "light") (ne .Site.Params.defaultTheme "dark")) }}
|
|
|
|
<style>
|
2021-03-19 14:12:49 +01:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
:root {
|
|
|
|
--theme: #1d1e20;
|
|
|
|
--entry: #2e2e33;
|
|
|
|
--primary: rgba(255, 255, 255, 0.84);
|
|
|
|
--secondary: rgba(255, 255, 255, 0.56);
|
|
|
|
--tertiary: rgba(255, 255, 255, 0.16);
|
|
|
|
--content: rgba(255, 255, 255, 0.74);
|
|
|
|
--hljs-bg: #2e2e33;
|
|
|
|
--code-bg: #37383e;
|
|
|
|
--border: #333;
|
|
|
|
}
|
2021-03-25 06:25:11 +01:00
|
|
|
|
2021-03-19 14:12:49 +01:00
|
|
|
.list {
|
|
|
|
background: var(--theme);
|
|
|
|
}
|
2021-03-25 06:25:11 +01:00
|
|
|
|
2021-03-22 12:04:02 +01:00
|
|
|
.list:not(.dark)::-webkit-scrollbar-track {
|
|
|
|
background: 0 0;
|
|
|
|
}
|
2021-03-25 06:25:11 +01:00
|
|
|
|
2021-03-22 12:04:02 +01:00
|
|
|
.list:not(.dark)::-webkit-scrollbar-thumb {
|
|
|
|
border-color: var(--theme);
|
|
|
|
}
|
2021-03-19 14:12:49 +01:00
|
|
|
}
|
2020-10-05 10:37:23 +02:00
|
|
|
</style>
|
2021-03-25 06:25:11 +01:00
|
|
|
{{- end }}
|
|
|
|
|
2020-10-05 10:37:23 +02:00
|
|
|
</noscript>
|
2020-07-21 12:06:30 +02:00
|
|
|
<header class="header">
|
|
|
|
<nav class="nav">
|
2020-10-26 17:49:05 +01:00
|
|
|
<div class="logo">
|
2021-03-27 07:21:48 +01:00
|
|
|
{{- $label_text := (.Site.Params.label.text | default .Site.Title) }}
|
|
|
|
{{- if .Site.Title }}
|
|
|
|
<a href="{{ "" | absLangURL }}" accesskey="h" title="{{ $label_text }} (Alt + H)">
|
2020-10-16 20:17:46 +02:00
|
|
|
{{- if .Site.Params.label.icon }}
|
2020-10-16 20:35:10 +02:00
|
|
|
<img src="{{- .Site.Params.label.icon -}}" alt="logo" aria-label="logo"
|
2020-10-16 20:17:46 +02:00
|
|
|
height="{{- .Site.Params.label.iconHeight | default "30px" -}}">
|
|
|
|
{{- end -}}
|
2021-03-27 07:21:48 +01:00
|
|
|
{{- $label_text -}}
|
2020-10-16 20:17:46 +02:00
|
|
|
</a>
|
2021-01-31 12:35:40 +01:00
|
|
|
{{- end }}
|
2020-10-26 17:49:05 +01:00
|
|
|
<span class="logo-switches">
|
2020-11-04 09:34:45 +01:00
|
|
|
{{- if (not .Site.Params.disableThemeToggle) }}
|
2021-02-12 06:18:04 +01:00
|
|
|
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
2021-01-31 12:35:40 +01:00
|
|
|
<svg id="moon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
|
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
|
|
stroke-linejoin="round">
|
|
|
|
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
|
|
|
</svg>
|
|
|
|
<svg id="sun" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
|
|
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
|
|
stroke-linejoin="round">
|
|
|
|
<circle cx="12" cy="12" r="5"></circle>
|
|
|
|
<line x1="12" y1="1" x2="12" y2="3"></line>
|
|
|
|
<line x1="12" y1="21" x2="12" y2="23"></line>
|
|
|
|
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
|
|
|
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
|
|
|
<line x1="1" y1="12" x2="3" y2="12"></line>
|
|
|
|
<line x1="21" y1="12" x2="23" y2="12"></line>
|
|
|
|
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
|
|
|
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
|
|
|
</svg>
|
2021-02-12 06:18:04 +01:00
|
|
|
</button>
|
2020-10-26 17:49:05 +01:00
|
|
|
{{- end}}
|
|
|
|
{{ $lang := .Lang}}
|
2021-03-27 07:21:48 +01:00
|
|
|
{{ $separator := or $label_text (not .Site.Params.disableThemeToggle)}}
|
2020-10-26 17:49:05 +01:00
|
|
|
{{- with $.Site.Home.AllTranslations }}
|
2021-01-31 12:35:40 +01:00
|
|
|
|
|
|
|
<ul class="lang-switch">
|
|
|
|
{{- if $separator }}<li>|</li>{{ end }}
|
|
|
|
{{- range . -}}
|
|
|
|
{{- if ne $lang .Lang }}
|
|
|
|
<li>
|
|
|
|
<a href="{{- .Permalink -}}" title="{{ .Language.LanguageName | default (.Lang | humanize) }}"
|
|
|
|
aria-label="{{ .Language.LanguageName | default (.Lang | humanize) }}">
|
|
|
|
{{- if (and $.Site.Params.displayFullLangName (.Language.LanguageName)) }}
|
|
|
|
{{- .Language.LanguageName | emojify -}}
|
|
|
|
{{- else }}
|
|
|
|
{{- .Lang | humanize -}}
|
|
|
|
{{- end -}}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{- end -}}
|
|
|
|
{{- end}}
|
|
|
|
</ul>
|
2020-10-26 17:49:05 +01:00
|
|
|
{{- end }}
|
2020-10-04 17:13:24 +02:00
|
|
|
</span>
|
2020-10-26 17:49:05 +01:00
|
|
|
</div>
|
2020-09-23 09:22:32 +02:00
|
|
|
{{- $currentPage := . }}
|
2021-01-31 12:35:40 +01:00
|
|
|
<ul id="menu" onscroll="menu_on_scroll()">
|
2020-07-21 12:06:30 +02:00
|
|
|
{{- range .Site.Menus.main }}
|
2020-12-01 09:28:16 +01:00
|
|
|
{{- $menu_item_url := (cond (strings.HasSuffix .URL "/") .URL (printf "%s/" .URL) ) | absLangURL }}
|
|
|
|
{{- $page_url:= $currentPage.Permalink | absLangURL }}
|
2020-12-18 18:20:04 +01:00
|
|
|
{{- $is_search := eq ($.Site.GetPage .KeyName).Layout `search` }}
|
2020-07-21 12:06:30 +02:00
|
|
|
<li>
|
2020-12-18 17:16:07 +01:00
|
|
|
<a href="{{ .URL | absLangURL }}" title="{{ .Title | default .Name }} {{- cond $is_search (" (Alt + /)" | safeHTMLAttr) ("" | safeHTMLAttr ) }}"
|
|
|
|
{{- cond $is_search (" accesskey=/" | safeHTMLAttr) ("" | safeHTMLAttr ) }}>
|
2020-12-01 09:28:16 +01:00
|
|
|
<span {{- if eq $menu_item_url $page_url }} class="active" {{- end }}>
|
2020-12-18 17:16:07 +01:00
|
|
|
{{- .Name -}}
|
2020-09-23 09:22:32 +02:00
|
|
|
</span>
|
2020-09-20 15:33:43 +02:00
|
|
|
</a>
|
2020-07-21 12:06:30 +02:00
|
|
|
</li>
|
2020-10-26 17:49:05 +01:00
|
|
|
{{- end -}}
|
2020-07-21 12:06:30 +02:00
|
|
|
</ul>
|
|
|
|
</nav>
|
2020-10-16 20:17:46 +02:00
|
|
|
</header>
|