This repository has been archived on 2023-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
homepage/themes/nightfall/layouts/_default/baseof.html

31 lines
496 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
<title>{{ block "title" . }}
{{ .Site.Title }}
{{ end }}</title>
{{ partial "head.html" . }}
</head>
<body>
<div class="flexWrapper">
{{ partial "header.html" . }}
<div class="content">
<main class="main">
{{ block "main" . }}
{{ end }}
</main>
</div>
{{ partial "footer.html" . }}
</div>
</body>
</html>