Skip to content
index.html 631 B
Newer Older
<!DOCTYPE html>
<html>
    <head>
        {% for src in js %}
            <script type="text/javascript" src="{{ src }}"></script>
        {% endfor %}
        {% for src in css %}
            <link type="text/css" rel="stylesheet" href="{{ src }}">
        {% endfor %}
        
Marco De Donno's avatar
Marco De Donno committed
        <link type="text/css" rel="stylesheet" href="{{ url_for( 'send_app_files', path = 'app.css' ) }}">
        
        <script type="text/javascript">
            baseurl = "{{ baseurl }}";
        </script>
    </head>
Marco De Donno's avatar
Marco De Donno committed
    <body class="icnml_body">
        {% include "header.html" %}
Marco De Donno's avatar
Marco De Donno committed
        {% include "navigation.html" %}
    </body>
</html>