aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/base.html
blob: 43eab3aaf0e023dfe603bc3d5e0b5cc909fbc84d (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
<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">

    <head>
      {% block metatags %}
      {% endblock %}
      {% 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>