summaryrefslogtreecommitdiffstats
path: root/layouts/_default/baseof.html
blob: a1eb732d63fba0a532b36c20c561fbd8175131f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{ partial "head.html" . }}

<body class="d-flex flex-column h-100">
    {{ partial "header.html" . }}

    <main>
        <div class="container-lg clearfix">
            <!-- list -->
            <div class="col-md-9 col-12 float-left" id="content">
                {{ block "main" . }}{{ end }}
            </div>
            <!-- sidebar -->
            <div class="col-md-3 col-12 float-left" id="sidebar">
                {{ partial "sidebar.html" . }}
            </div>
            <div id="container-progress">
                <div id="progress"></div>
            </div>
        </div>
    </main>

    {{ partial "footer.html" . }}
    {{ partial "scripts.html" . }}
</body>

</html>