summaryrefslogtreecommitdiff
path: root/_layouts/default.html
blob: c783d3a2a809b792246772d510583bcbdf904b76 (plain)
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
<!DOCTYPE html>
<html lang="en-GB">
    {% include head.html %}

    <body>
        {% include header.html %}

        <div class="page-content">
            <div class="toprule tr-{{page.layout}}"></div>
            <div class="container {{page.container_class}} {{page.layout}}">
                {% if page.sidebar %}
                <div class="col-xs-12 col-md-8">
                    {{ content }}
                </div>
                <div class="sticken col-xs-12 col-md-4">
                    <br />
		    {% if page.sidebar
                    %}<div class="default-sidebar">{% include {{page.sidebar}}
		    %}</div>{% endif %}
                </div>
                {% else %}
                <div class="col-xs-12 col-md-12">
                    {{ content }}
                </div>
                {% endif %}
            </div>
        </div>

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