1
<!DOCTYPE html>
2
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
3
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
4
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
5
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
6
  <head>
7
    <meta charset="utf-8">
8
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
9
    <meta name="description" content="">
10
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
11
12
    <!-- Place favicon.ico in the root directory -->
13
14
    <link rel="stylesheet" href="{{url_for('static', filename='css/normalize.css')}}">
15
    <link rel="stylesheet" href="{{url_for('static', filename='css/bootstrap.min.css')}}" media="screen">
16
    <link rel="stylesheet" href="{{url_for('static', filename='css/mouchak.css')}}">
17
    <link rel="stylesheet" href="{{url_for('static', filename='css/main.css')}}">
18
    <script src="{{url_for('static', filename='js/lib/modernizr-2.6.2.min.js')}}"></script>
19
20
    <!--TODO: make this optional, only when there is a map plugin in the site. There
21
    is no need to load this for every site -->
22
    <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" />
23
    <!--[if lte IE 8]>
24
        <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" />
25
    <![endif]-->
26
    <script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet-src.js"></script>
27
    {% block head %} {% endblock %}
28
  </head>
29
  <body>
30
    <!--[if lt IE 7]>
31
    <p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
32
    <![endif]-->
33
34
    {% block body %} {% endblock %}
35
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
36
    <script>window.jQuery || document.write('<script src="{{url_for('static', filename='js/lib/jquery-1.10.2.min.js')}}"><\/script>')</script>
37
    <script src="{{url_for('static', filename='js/lib/underscore-1.5.2.min.js')}}"></script>
38
    <script src="{{url_for('static', filename='js/lib/backbone-1.0.0.min.js')}}"></script>
39
    <script src="{{url_for('static', filename='js/lib/bootstrap.min.js')}}"></script>
40
    <script src="{{url_for('static', filename='js/plugins.js')}}"></script>
41
42
    {% block scripts %} {% endblock %}
43
44
    {% block templates %} {% endblock %}
45
  </body>
46
</html>