-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
44 lines (37 loc) · 1.12 KB
/
base.html
File metadata and controls
44 lines (37 loc) · 1.12 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
44
<!DOCTYPE HTML>
{% import "header.html" as hdr with context %}
<html class="{% block page_class %}{% endblock %}">
<head>
{% include "head.html" %}
{% block adtl_meta %}
{% endblock %}
</head>
<body>
{% block modals %}
{% include "modals/age-gate.html" %}
{% endblock %}
{% block topbar_content %}
{% include "topbar.html" %}
{% endblock %}
{% block header_content %}
{{ hdr.render_header(false) }}
{% endblock %}
{% block page_content %}
{% endblock %}
{% include "footer.html" %}
{% block page_script %}
{{ 'js/jquery.js' | asset_url | javascript_tag }}
{{ js.base() }}
{{ 'js/jquery-ui.min.js' | asset_url | javascript_tag }}
{{ 'js/jquery.cookie.js' | asset_url | javascript_tag }}
{# 'js/underscore-min.js' | asset_url | javascript_tag #}
{{ 'js/bootstrap.min.js' | asset_url | javascript_tag }}
{{ 'js/age_gate.js' | asset_url | javascript_tag }}
{{ 'js/main.js' | asset_url | javascript_tag }}
{% endblock %}
{% include "ga.html" %}
{% include "adroll.html" %}
{% include "olark.html" %}
{% include "getkudos.html" %}
</body>
</html>