personal-website/layouts/_default/baseof.html

18 lines
499 B
HTML
Raw Normal View History

2023-08-08 09:03:06 +02:00
<!doctype html>
{{ $language := or .Params.Language "en" }}
<html lang="{{ $language }}">
2023-08-08 09:03:06 +02:00
<head>
2023-08-31 10:06:52 +02:00
{{ partial "head/meta.html" . }}
2023-08-31 11:46:35 +02:00
<title>{{ or .Title .Site.Title }}</title>
2023-08-18 07:48:23 +02:00
{{ partial "head/favicon.html" . }}
{{ partial "head/styling.html" . }}
2023-08-08 09:03:06 +02:00
</head>
<body>
2023-08-30 15:41:50 +02:00
{{ partial "body/nav.html" . }}
2023-08-08 09:03:06 +02:00
{{ block "page" . }}{{ end }}
2023-12-25 22:18:29 +01:00
2024-07-30 14:02:33 +02:00
<script async src="https://esseles.adora.codes/script.js" data-website-id="a163d1bf-b3af-472d-bded-be9347b32628"></script>
2023-08-08 09:03:06 +02:00
</body>
2024-07-30 14:02:33 +02:00
</html>