52 lines
1.6 KiB
HTML
52 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
||
<html class="nojs" lang="{{ site.LanguageCode | default site.Language.Lang }}" dir="{{ site.Language.LanguageDirection | default "ltr" }}">
|
||
<head>
|
||
<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" . }}
|
||
</head>
|
||
|
||
<body
|
||
x-data="{ colorScheme: $persist('sync') }"
|
||
x-bind:class="`color-scheme--${colorScheme}`"
|
||
>
|
||
<header class="pt-4 pb-6">
|
||
<div class="container mx-auto px-6 flex items-center mb-4 gap-6">
|
||
<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" . }}
|
||
{{ partial "theme-selector.html" . }}
|
||
</div>
|
||
{{ partial "menu.html" . }}
|
||
</header>
|
||
|
||
{{ block "main" . }}{{ end }}
|
||
|
||
{{ if $.Param "sidebar" }}{{ partial "sidebar.html" . }}{{ end -}}
|
||
|
||
<footer>
|
||
<div class="container mx-auto px-6 py-6">
|
||
{{ 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>
|
||
</body>
|
||
</html>
|