aboutsummaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/base.html
blob: 01339c1fa3f98c656cd8d495379dd4d0fbf6bbba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{# BASED? BASED ON WHAT? #}
<!DOCTYPE html>
<html>
    <head>
        <title>{%block title %}{% endblock %}</title>
        <meta name="viewport" content="width=device-width, initial-scale=1">
    </head>
    <body>
        {% block header %}{% endblock %}
        {% for msg in get_flashed_messages() %}
            <div class="flash">{{ msg }}</div>
        {% endfor %}
        {%block content %}{% endblock %}
    </body>
</html>