17 lines
691 B
HTML
17 lines
691 B
HTML
<!DOCTYPE html>
|
||
<html lang="{{ .Page.Lang }}">
|
||
<head>
|
||
<title>{{ with .Title }} {{ . }} – {{ end }}{{ .Site.Title }}</title>
|
||
{{ block "stylesheet" . }}{{ end }}
|
||
<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="{{ with .File }}{{ .ContentBaseName }}{{ end }}" class="{{ .Page.Section }}">
|
||
{{- block "header" . }}{{ end }}
|
||
{{ partial "sidebar.html" . }}
|
||
{{- block "main" . }}{{ end }}
|
||
{{ partial "footer.html" . }}
|
||
</body>
|
||
</html>
|