aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: cceaa25ccf10959ed7a4c6848d16a826a795aa9d (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="dark"> 
    {{- 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>