aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: bb272323f8b4be596f1f16b6a65b64a5bee7cf3d (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>
        <button id="fullscreen">Fullscreen</button>
        {{- partial "header.html" . -}}
        <div
            class='container'
            id="content"
        >
        {{- block "main" . }}
        {{- end }}
        </div>
        {{- partial "footer.html" . -}}
        {{- partial "scripts.html" . -}}
    </body>
</html>