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>
|
2021-03-05 19:35:05 +01:00
|
|
|
|
{{- $style := resources.Get "/style.scss" | resources.ToCSS (dict "outputStyle" "compressed") }}
|
|
|
|
|
<link rel="preload stylesheet" as="style" href="{{ $style.Permalink }}" type="text/css" media="screen" />
|
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>
|
|
|
|
|
{{ partial "nav.html" . }}
|
2021-03-05 19:35:05 +01:00
|
|
|
|
{{- block "main" . }}{{ end }}
|
2020-09-14 16:24:02 +02:00
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|