aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: acb6c6af01c2f99ce40fcd9f31c04a47a56c798c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en" data-theme="light"> 
    {{- partial "head.html" . -}}
    <body>
        {{- partial "site-actions" . -}}
        {{- partial "header.html" . -}}
        <div
            class='container'
            id="content"
        >
        {{- block "main" . }}
        {{- end }}
        </div>
        {{- partial "footer.html" . -}}
        {{- partial "scripts.html" . -}}
    </body>
</html>