personal-website/layouts/home.html

16 lines
279 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>
{{ partial "head/defaults.html" . }}
{{ partial "head/styling.html" . }}
{{ partial "head/sharing.html" . }}
</head>
<body>
<h1>{{ .Site.Title }}</h1>
{{ .Content }}
</body>
2023-08-08 09:03:06 +02:00
</html>