summaryrefslogtreecommitdiffstats
path: root/nfsw/templates/base.html
blob: a686d0c2d73d1136a028af95b5763b5409752c55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<html lang="en">
    <head>
        <title>{% block title %}{% endblock %} - NFSW</title>
        <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
        <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
    </head>
    <body>
        {% block js %}{% endblock %}

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