summaryrefslogtreecommitdiffstats
path: root/layouts/_default/baseof.html
blob: 13f61d21952e8978b142a299443b2a79aa832de9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{ partial "head.html" . }}

<body class="d-flex flex-column h-100">
    {{ partial "header.html" . }}

    {{ block "main" . }}{{ end }}

    {{ partial "footer.html" . }}
    {{ partial "scripts.html" . }}
</body>

</html>