Skip to content
index.html 691 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_main_layout">
Marco De Donno's avatar
Marco De Donno committed
        {% include "header.html" %}
        {% include "navigations/submitter.html" %}
        <div class="icnml_content"></div>
    </body>
</html>