-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathbase.html
More file actions
83 lines (60 loc) · 2.9 KB
/
base.html
File metadata and controls
83 lines (60 loc) · 2.9 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{% load compress static wagtailuserbar %}
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<title>
{% block title %}{% if self.seo_title %}{{ self.seo_title }}{% else %}{{ self.title }}{% endif %}{% endblock %}
{% block title_suffix %}{% endblock %}</title>
<meta name="description" content=""/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<script type="text/javascript" src="//use.typekit.net/qgj1xay.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"></script>
<script type="text/javascript">try{Typekit.load({async: false});}catch(e){}</script>
{% compress css %}
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
<!-- nested bootstrap menus -->
<link rel="stylesheet" href="{% static 'css/jquery.smartmenus.bootstrap.css' %}">
<link rel="stylesheet" href="{% static 'css/style.css' %}">
<link rel="stylesheet" href="{% static 'css/tito.css' %}">
<link rel="stylesheet" href="{% static 'css/tweet.css' %}">
<link rel="stylesheet" type="text/x-scss" href="{% static 'css/pythonie.scss' %}">
{% endcompress %}
<link rel="shortcut icon" type="image/ico" href="{% static 'icons/favicon.ico' %}"/>
{% block extra_css %}
{% endblock %}
</head>
<body class="{% block body_class %}{% endblock %}">
{% wagtailuserbar %}
{% include "header.html" %}
{% include "navbar.html" %}
{% block content %}{% endblock %}
{% include "footer.html" %}
{% compress js %}
<script type="text/javascript" src="{% static 'js/pythonie.js' %}"></script>
{% endcompress %}
{% block basejs %}
<script src="https://code.jquery.com/jquery-1.12.4.js"
integrity="sha256-Qw82+bXyGq6MydymqBxNPYTaUXXq7c8v3CwiYwLLNXU="
crossorigin="anonymous"></script>
<script src="{% static 'js/jquery.smartmenus.js' %}"></script>
<script src="{% static 'js/jquery.smartmenus.bootstrap.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-53856571-1', 'auto');
ga('send', 'pageview');
</script>
{% endblock %}
{% block extra_js %}
{% endblock %}
</body>
</html>