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 |
<link rel="shortcut icon" type="image/x-icon" href="{{ url_for('static', |
14 |
filename='img/favicon.ico') }}"/> |
15 |
|
16 |
<link rel="stylesheet" href="{{url_for('static', filename='css/normalize.css')}}"> |
17 |
<link rel="stylesheet" href="{{url_for('static', filename='css/bootstrap.min.css')}}" media="screen"> |
18 |
<link rel="stylesheet" href="{{url_for('static', filename='css/mouchak.css')}}"> |
19 |
<script src="{{url_for('static', filename='js/lib/modernizr-2.6.2.min.js')}}"></script> |
20 |
|
21 |
<!--TODO: make this optional, only when there is a map plugin in the site. There |
22 |
is no need to load this for every site --> |
23 |
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" /> |
24 |
<!--[if lte IE 8]> |
25 |
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" /> |
26 |
<![endif]--> |
27 |
<script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet-src.js"></script> |
28 |
{% block head %} {% endblock %} |
29 |
</head> |
30 |
<body> |
31 |
<!--[if lt IE 7]> |
32 |
<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> |
33 |
<![endif]--> |
34 |
|
35 |
{% block body %} {% endblock %} |
36 |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> |
37 |
<script>window.jQuery || document.write('<script src="{{url_for('static', filename='js/lib/jquery-1.10.2.min.js')}}"><\/script>')</script> |
38 |
<script src="{{url_for('static', filename='js/lib/underscore-1.5.2.min.js')}}"></script> |
39 |
<script src="{{url_for('static', filename='js/lib/backbone-1.0.0.min.js')}}"></script> |
40 |
<script src="{{url_for('static', filename='js/lib/bootstrap.min.js')}}"></script> |
41 |
<script src="{{url_for('static', filename='js/plugins.js')}}"></script> |
42 |
|
43 |
{% block scripts %} {% endblock %} |
44 |
|
45 |
{% block templates %} {% endblock %} |
46 |
</body> |
47 |
</html> |