personal-website/layouts/home.html

21 lines
465 B
HTML
Raw Permalink Normal View History

2023-08-08 09:03:06 +02:00
<!doctype html>
<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" . }}
</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>
</body>
2023-08-08 09:03:06 +02:00
</html>