website/layouts/_default/baseof.html

18 lines
702 B
HTML
Raw Normal View History

2020-09-14 16:24:02 +02:00
<!doctype html>
2020-10-05 09:57:10 +02:00
<html lang="en">
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>
<body>
2022-11-28 18:32:29 +01:00
{{- block "header" . }}{{ end }}
2020-09-14 16:24:02 +02:00
{{ partial "nav.html" . }}
{{- block "main" . }}{{ end }}
2020-09-14 16:24:02 +02:00
{{ partial "footer.html" . }}
</body>
</html>