This repository has been archived on 2022-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
public-web/layouts/_default/baseof.html
2022-10-20 23:55:23 +02:00

48 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>
<header class="bg-gray-900 text-white py-4">
<div class="container mx-auto px-6 flex mb-4 gap-2">
<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" . }}
</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>