summaryrefslogblamecommitdiffstats
path: root/nfsw/templates/base.html
blob: 771f2d3780fa9e279eff67b85d60b2f2cc94974f (plain) (tree)
1
2
3
4
5
6
7
8
9


                

                                                                                              
                                                             


                                     


                                                                                         
                                    





                                             
<!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 %}

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