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>
|
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
{{ block "stylesheet" . }}{{ end }}
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
{{ partial "nav.html" . }}
|
|
|
|
|
{{ block "main" . }}{{ end }}
|
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|