website/layouts/_default/baseof.html

18 lines
743 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>
{{- $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" />
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" . }}
{{- block "main" . }}{{ end }}
2020-09-14 16:24:02 +02:00
{{ partial "footer.html" . }}
</body>
</html>