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>
|
2023-08-31 09:54:02 +02:00
|
|
|
{{ partial "head/meta.html" . }}
|
2023-08-31 10:06:52 +02:00
|
|
|
{{ partial "head/favicon.html" . }}
|
|
|
|
{{ partial "head/styling.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-12-25 22:23:27 +01:00
|
|
|
|
|
|
|
<script async src="https://info.lauka.net/script.js" data-website-id="a163d1bf-b3af-472d-bded-be9347b32628"></script>
|
2023-08-10 08:03:44 +02:00
|
|
|
</body>
|
|
|
|
|
2023-08-08 09:03:06 +02:00
|
|
|
</html>
|