summaryrefslogtreecommitdiff
path: root/qutebrowser/html/base.html
blob: 6db1829085e774b34c79d295730d97816a79c2e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<!--
vim: ft=html fileencoding=utf-8 sts=4 sw=4 et:
-->

<html>
    <head>
        <meta charset="utf-8">
        <title>{{ title }}</title>
        <style type="text/css">
            {% block style %}
            body {
                margin: 0;
                padding: 0;
            }
            {% endblock %}
        </style>
        <script type="text/javascript">
            {% block script %}
            {% endblock %}
        </script>
    </head>
    <body>
        {% block content %}
        {% endblock %}
    </body>
</html>