personal-website/layouts/_default/baseof.html
lauralani 796de905d9
All checks were successful
ci/woodpecker/push/deploy-netlify Pipeline was successful
update meta tags
2023-08-31 09:54:02 +02:00

15 lines
No EOL
417 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>{{ or .Title .Site.Title }}{{ if ne .Kind "home" }} | {{ .CurrentSection.Title }}{{ end }}</title>
{{ partial "head/defaults.html" . }}
{{ partial "head/favicon.html" . }}
{{ partial "head/styling.html" . }}
{{ partial "head/meta.html" . }}
</head>
<body>
{{ partial "body/nav.html" . }}
{{ block "page" . }}{{ end }}
</body>
</html>