18 lines
804 B
HTML
18 lines
804 B
HTML
<!doctype html>
|
||
<html lang="{{ .Page.Lang }}">
|
||
<head>
|
||
<title>{{ with .Title }} {{ . }} – {{ end }}{{ .Site.Title }}</title>
|
||
{{- $style := resources.Get "/style.scss" | resources.ToCSS (dict "outputStyle" "compressed") }}
|
||
<link rel="preload stylesheet" as="style" href="{{ $style.Permalink }}" type="text/css" media="screen" />
|
||
<link href="/gpg.pub" rel="pgpkey authn" />
|
||
<link href="https://social.anoxinon.de/@vri" rel="me" />
|
||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
</head>
|
||
<body id="{{ .Page.Title }}">
|
||
{{- block "header" . }}{{ end }}
|
||
{{ partial "sidebar.html" . }}
|
||
{{- block "main" . }}{{ end }}
|
||
{{ partial "footer.html" . }}
|
||
</body>
|
||
</html>
|