-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathlayout.html
More file actions
43 lines (35 loc) · 1.36 KB
/
layout.html
File metadata and controls
43 lines (35 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html itemscope itemtype="http://schema.org/Event">
<head>
{% include 'includes/meta-header.html' %}
{% block css %}
<link rel="stylesheet" type="text/css" href="{{ '/static/css/main.css'|url }}">
{% endblock %}
</head>
<body {% if this.bodyclass %}class="{{ this.bodyclass }}"{% endif %}>
<div class="global">
{% include 'includes/navigation-bar.html' %}
{% block page_header %}{% endblock %}
{% block content %}{% endblock %}
{% include 'includes/footer.html' %}
</div>
{% block js %}
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="themes/blue-is-the-warmest-color/js/jquery.js"><\/script>')</script>
<script src="//maps.google.com/maps/api/js?sensor=false"></script>
<script src="{{ '/static/js/main.js'|url }}"></script>
<!-- GOOGLE ANALYTICS -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33656081-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- /GOOGLE ANALYTICS -->
{% endblock %}
</body>
</html>