2020-09-14 16:24:02 +02:00
|
|
|
|
<!doctype html>
|
2022-12-24 14:59:52 +01:00
|
|
|
|
<html lang="{{ .Page.Lang }}">
|
2020-09-14 16:24:02 +02:00
|
|
|
|
<head>
|
|
|
|
|
<title>{{ with .Title }} {{ . }} – {{ end }}{{ .Site.Title }}</title>
|
2021-03-05 19:35:05 +01:00
|
|
|
|
{{- $style := resources.Get "/style.scss" | resources.ToCSS (dict "outputStyle" "compressed") }}
|
|
|
|
|
<link rel="preload stylesheet" as="style" href="{{ $style.Permalink }}" type="text/css" media="screen" />
|
2021-05-14 11:55:52 +02:00
|
|
|
|
<link href="/gpg.pub" rel="pgpkey authn" />
|
2023-01-12 23:29:53 +01:00
|
|
|
|
<link href="https://social.anoxinon.de/@vri" rel="me" />
|
2020-09-14 16:24:02 +02:00
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
</head>
|
2022-12-24 14:59:52 +01:00
|
|
|
|
<body id="{{ .Page.Title }}">
|
2022-11-28 18:32:29 +01:00
|
|
|
|
{{- block "header" . }}{{ end }}
|
2022-12-24 14:59:52 +01:00
|
|
|
|
{{ partial "sidebar.html" . }}
|
2021-03-05 19:35:05 +01:00
|
|
|
|
{{- block "main" . }}{{ end }}
|
2020-09-14 16:24:02 +02:00
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|