{% 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') }}"> {%- endblock %} </head> <body> <div id="wrap"> <div id="map"></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('static', filename='js/leaflet.js') }}"></script> <script type="text/javascript" src="{{ url_for('ispdb.site_embed_js') }}"></script> {%- endblock %} </body> </html>