summaryrefslogtreecommitdiff
path: root/web/kbn_templates/base.html
blob: 43f7d2a20b32b92664fb34b9d3317688466cded2 (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
<!doctype html>
<html>
<head>
    <title>{{ title }}</title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <script>
        window.onerror = function(error) {
            window.console && console.error(error);
        }
    </script>
    {{ head_static | safe }}
</head>
<body>
<div class="container py-3">

{% block content %} {% endblock %}

{% if js %}
<script>{{ js|raw }}</script>
{% endif %}

</div>
</body>
</html>