2023-08-08 09:03:06 +02:00
|
|
|
<!doctype html>
|
2023-08-10 08:03:44 +02:00
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>{{ or .Title .Site.Title }}</title>
|
|
|
|
{{ partial "head/defaults.html" . }}
|
|
|
|
{{ partial "head/styling.html" . }}
|
2023-08-31 09:54:02 +02:00
|
|
|
{{ partial "head/meta.html" . }}
|
2023-08-10 08:03:44 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2023-08-30 15:41:50 +02:00
|
|
|
{{ partial "body/nav.html" . }}
|
|
|
|
<content>
|
|
|
|
{{ .Content }}
|
|
|
|
</content>
|
2023-08-31 08:42:15 +02:00
|
|
|
{{ partial "body/footer.html" . }}
|
2023-08-10 08:03:44 +02:00
|
|
|
</body>
|
|
|
|
|
2023-08-08 09:03:06 +02:00
|
|
|
</html>
|