aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/base.html
blob: e28af281f6b8fb48d0b1499ec38f59bd268f8ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">

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

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