summaryrefslogtreecommitdiffstats
path: root/layouts/_default/list.html
blob: a4ab2b7bb9d174357a6fb2f851ecf2255dd720d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" }}
<main>
    <div class="container-lg clearfix">
        <!-- list -->
        <div class="col-md-9 col-12 float-left" id="content">
            <span id="not-found">404 NOT FOUND</span>
        </div>
        <!-- sidebar -->
        <div class="col-md-3 col-12 float-left" id="sidebar">
            {{ partial "sidebar.html" . }}
        </div>
    </div>
</main>
{{ end }}