summaryrefslogtreecommitdiffstats
path: root/nfsw/templates/base.html
blob: 008916d4760d925aed8404c630d1329e4ffcee92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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>
        <script src="{{ url_for('static', filename='jquery.js') }}"></script>
        <script src="{{ url_for('static', filename='nfsw.js') }}"></script>

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