summaryrefslogtreecommitdiffstats
path: root/layouts/_default/baseof.html
blob: 0580a29be126e894ada0744860358a6051e8b418 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
    {{- partial "head.html" . -}}
    <body>
        <!-- {{- partial "header.html" . -}} -->
        <div id="content">
        {{- block "main" . }}{{- end }}
        </div>
        {{- partial "footer.html" . -}}
    </body>
</html>