summaryrefslogtreecommitdiffstats
path: root/layouts/_default/baseof.html
blob: 1c2d48bcd77ae7f86b6cdb36886fc15bc10b8f22 (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
29
30
31
32
33
34
<!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 link-alter" id="sidebar">
                {{ partial "sidebar.html" . }}
            </div>
            <!-- global APlayer -->
            {{ if .Site.Params.playerURL }}
            <div id="aplayer"></div>
            {{ end }}
            {{ if .Site.Params.scrollTop }}
            <div id="scroll-top">
                <i class="fas fa-chevron-up"></i>
            </div>
            {{ end }}
        </div>
    </main>

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

</html>