123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {% macro menu_item(name, endpoint=None) -%}
- <li{% if request.endpoint == endpoint %} class="active"{% endif %}><a href="{{ url_for(endpoint) if endpoint else "#" }}">{{ name }}</a></li>
- {%- endmacro -%}
- <!doctype html>
- <html lang="fr">
- <head>
- {% block head -%}
- <meta charset="utf-8">
- <title>FFDN ISP Database</title>
- <!-- meta -->
- <link type="text/plain" rel="author" href="/../humans.txt" />
- <!-- icon
- <link rel="shortcut icon" href="favicon.ico"> -->
- <!-- css -->
- <link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/bootstrap.css') }}">
- <link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/bootstrap-responsive.css') }}">
- <link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/jquery.ui.all.css') }}">
- <link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/bootstrap-select.min.css') }}">
- <link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/leaflet.css') }}">
- <link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/flags.css') }}">
- <link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/style.css') }}">
- <link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/style_embed.css') }}">
- <script type="text/javascript" src="{{ url_for('static', filename='js/ol.js') }}"></script>
- {%- endblock %}
- </head>
- <body>
- <div id="wrap">
- <div id="map">
- <script type="text/javascript">
- var map = new ol.Map({
- target: 'map',
- layers: [
- new ol.layer.Tile({
- source: new ol.source.OSM()
- })
- ],
- view: new ol.View({
- center: ol.proj.fromLonLat([37.41, 8.82]),
- zoom: 4
- })
- });
- </script>
- </div>
- {% block script -%}
- <script type="text/javascript" src="{{ url_for('static', filename='js/jquery.js') }}"></script>
- <script type="text/javascript" src="{{ url_for('static', filename='js/bootstrap.js') }}"></script>
- <script type="text/javascript" src="{{ url_for('static', filename='js/bootstrap-select.min.js') }}"></script>
- <script type="text/javascript" src="{{ url_for('ispdb.site_embed_js') }}"></script>
- {%- endblock %}
- </body>
- </html>
|