personal-website/layouts/_default/baseof.html

13 lines
383 B
HTML
Raw Normal View History

2023-08-08 09:03:06 +02:00
<!doctype html>
<html lang="en">
2023-08-08 09:03:06 +02:00
<head>
<title>{{ or .Title .Site.Title }}{{ if ne .Kind "home" }} | {{ .CurrentSection.Title }}{{ end }}</title>
{{ partial "head/defaults.html" . }}
2023-08-18 07:48:23 +02:00
{{ partial "head/favicon.html" . }}
{{ partial "head/styling.html" . }}
{{ partial "head/sharing.html" . }}
2023-08-08 09:03:06 +02:00
</head>
<body>
{{ block "page" . }}{{ end }}
</body>
</html>