website/layouts/_default/baseof.html

25 lines
976 B
HTML
Raw Permalink Normal View History

2023-05-17 14:53:31 +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" />
2023-05-17 15:26:00 +02:00
<meta name="description" content='
{{- if (isset .Params "description") -}}
{{- index .Params "description" }} {{ .Site.Title -}}
{{- else if (isset .Params "title") -}}
{{- index .Params "title" }} {{ .Site.Title -}}
{{- end -}}
'>
2020-09-14 16:24:02 +02:00
</head>
2023-05-17 13:20:19 +02:00
<body id="{{ with .File }}{{ .ContentBaseName }}{{ end }}" 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>