personal-website/layouts/home.html

19 lines
344 B
HTML
Raw 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" . }}
</body>
2023-08-08 09:03:06 +02:00
</html>