aboutsummaryrefslogtreecommitdiffstats
path: root/python/gui/templates/head.html
blob: cdf165469867c1747309fa75ed0964d3b9a6e12a (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
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>ODR-DabMod</title>

    <!-- jquery -->
    <script type="text/javascript" src="/js/jquery.js"></script>

    <!-- Bootstrap -->
    <link href="/css/bootstrap.min.css" rel="stylesheet">
    <script type="text/javascript" src="/js/bootstrap.min.js"></script>

    <!-- ODR -->
    {% for jsurl in js %}
    <script type="text/javascript" src="{{ jsurl }}"></script>
    {% endfor %}
    {% for cssurl in css %}
    <link href="{{ cssurl }}" rel="stylesheet">
    {% endfor %}

    <!-- gritter -->
    <link rel="stylesheet" type="text/css" href="/css/jquery.gritter.css" />
    <script type="text/javascript" src="/js/jquery.gritter.js"></script>
</head>