summaryrefslogtreecommitdiff
path: root/_layouts/default.html
blob: e66a7e849133cca3b32a05ecde62b89e98b7db60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en-GB">
    {% include head.html %}

    <body>
        {% include header.html %}

        <div class="page-content">
            <div class="container">
                <div class="col-xs-12 col-md-8">
                    {{ content }}
                </div>
                <div class="col-xs-12 col-md-4">
		    {% include sb_sidebar.html %}
                </div>
            </div>
        </div>

        {% include footer.html %}
    </body>
</html>