2022-10-20 19:39:49 +02:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html class="nojs" lang="{{ site.LanguageCode | default site.Language.Lang }}" dir="{{ site.Language.LanguageDirection | default "ltr" }}">
|
|
|
|
|
<head>
|
2022-10-20 23:26:03 +02:00
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
|
<title>{{ block "title" . }}{{ .Title }} – {{ site.Title }}{{ end }}</title>
|
|
|
|
|
{{ partial "meta.html" . }}
|
|
|
|
|
{{ partialCached "styles.html" . }}
|
|
|
|
|
{{- block "head" . }}{{ end }}
|
|
|
|
|
{{ partial "meta_json_ld.html" . }}
|
|
|
|
|
{{ partial "scripts.html" . }}
|
|
|
|
|
{{ partialCached "tracking.html" . }}
|
2022-10-20 19:39:49 +02:00
|
|
|
|
</head>
|
|
|
|
|
|
2022-10-21 10:20:01 +02:00
|
|
|
|
<body
|
|
|
|
|
x-data="{ colorScheme: $persist('sync') }"
|
|
|
|
|
x-bind:class="`color-scheme--${colorScheme}`"
|
|
|
|
|
>
|
2022-10-20 23:57:35 +02:00
|
|
|
|
<header class="pt-4 pb-6">
|
2022-10-21 10:20:01 +02:00
|
|
|
|
<div class="container mx-auto px-6 flex items-center mb-4 gap-6">
|
2022-10-20 23:26:03 +02:00
|
|
|
|
<a href="{{ "/" | relLangURL }}" title="Home" rel="home" class="md:mr-auto">
|
|
|
|
|
<img src="{{ "/images/logo.png" | relURL }}" width="60" alt="{{ site.Title }}" />
|
|
|
|
|
</a>
|
|
|
|
|
{{ partial "language-selector.html" . }}
|
2022-10-21 10:20:01 +02:00
|
|
|
|
{{ partial "theme-selector.html" . }}
|
2022-10-20 23:26:03 +02:00
|
|
|
|
</div>
|
|
|
|
|
{{ partial "menu.html" . }}
|
|
|
|
|
</header>
|
2022-10-20 19:39:49 +02:00
|
|
|
|
|
2022-10-20 23:26:03 +02:00
|
|
|
|
{{ block "main" . }}{{ end }}
|
2022-10-20 19:39:49 +02:00
|
|
|
|
|
2022-10-20 23:26:03 +02:00
|
|
|
|
{{ if $.Param "sidebar" }}{{ partial "sidebar.html" . }}{{ end -}}
|
2022-10-20 19:39:49 +02:00
|
|
|
|
|
2022-10-21 12:10:29 +02:00
|
|
|
|
<footer class="mt-6 text-gray-500">
|
2022-10-20 23:55:23 +02:00
|
|
|
|
<div class="container mx-auto px-6 py-6">
|
2022-10-20 23:26:03 +02:00
|
|
|
|
{{ if $.Param "feedlinks" }}
|
|
|
|
|
{{ partial "feedlinks.html" . }}
|
|
|
|
|
{{ end -}}
|
|
|
|
|
<p>
|
|
|
|
|
{{ with $.Param "copyright" }}
|
|
|
|
|
{{ . | markdownify }}
|
|
|
|
|
{{ else }}
|
|
|
|
|
<span>© {{ site.Title }}</span>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</p>
|
|
|
|
|
{{ with $.Param "footer" }}
|
|
|
|
|
<p>{{ . | markdownify }}</p>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
2022-10-20 19:39:49 +02:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|