summaryrefslogtreecommitdiffstats
path: root/nfsw/templates/base.html
blob: 2f57c95009e2a602d3da1f11523edeec319ecdc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <title>{% block title %}{% endblock %} - NFSW</title>

        {% block css %}{% endblock %}

        <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
    </head>
    <body>
        {% block js %}{% endblock %}

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