summaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: f7e8ead1f47df977af7096699f4fc828e9af93b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
    {{- partial "head.html" . -}}
    <body>
        <div id="container">
        {{- partial "header.html" . -}}
            <div class="container">
                <div id="content">
                {{- block "main" . }}{{- end }}
                </div>
            </div>
        {{- partial "footer.html" . -}}

        </div>
        {{- partial "scripts.html" . -}}
    </body>
</html>