aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/base.html
blob: dd8226d07b71e4386371706f8649044d8519eb8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">

    {% block head %}
    {% endblock head %}

    {% block body %}
    <body>
        <div class="container">
            {% block wrapped %}
            {% endblock %}

            {# This can be used for a footer #}
            <div>
                {% block footer %}
                {% endblock %}
            </div>

        </div>
    </body>
    {% endblock %}
</html>