website/layouts/_default/baseof.html

18 lines
671 B
HTML
Raw Normal View History

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>
{{ block "stylesheet" . }}{{ end }}
<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>
2023-01-15 00:36:31 +01:00
<body id="{{ .File.ContentBaseName }}" class="{{ .Page.Section }}">
2022-11-28 18:32:29 +01:00
{{- block "header" . }}{{ end }}
2022-12-24 14:59:52 +01:00
{{ partial "sidebar.html" . }}
{{- block "main" . }}{{ end }}
2020-09-14 16:24:02 +02:00
{{ partial "footer.html" . }}
</body>
</html>