-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbase.html
executable file
·242 lines (237 loc) · 12.6 KB
/
base.html
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<!doctype html>
<html lang="{{ LANGUAGE_CODE }}"{% if LANGUAGE_BIDI %} dir="rtl"{% endif %}>
{% load i18n pages_tags mezzanine_tags blog_tags staticfiles keyword_tags disqus_tags events_tags %}
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="{% block meta_keywords %}{% endblock %}">
<meta name="description" content="{% block meta_description %}{% endblock %}">
<title>{% block meta_title %}{% endblock %}{% if settings.SITE_TITLE %} | {{ settings.SITE_TITLE }}{% endif %}</title>
<!-- Favicon -->
<link rel="shortcut icon" href="{% static 'favicon.png' %}">
<!-- Web Fonts -->
<link rel='stylesheet' type='text/css' href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600&subset=cyrillic,latin'>
<link rel="alternate" type="application/rss+xml" title="RSS" href="{% url "blog_post_feed" "rss" %}">
<link rel="alternate" type="application/atom+xml" title="Atom" href="{% url "blog_post_feed" "atom" %}">
<link rel="stylesheet" href="{% static 'events/css/calendar.css' %}">
{% block extra_css %}{% endblock extra_css %}
<!-- CSS Global Compulsory -->
<link rel="stylesheet" href="{% static 'assets/plugins/bootstrap/css/bootstrap.min.css' %}">
<link rel="stylesheet" href="{% static 'assets/css/style.css' %}">
<!-- CSS Header and Footer -->
<link rel="stylesheet" href="{% static 'assets/css/headers/header-v3.css' %}">
<link rel="stylesheet" href="{% static 'assets/css/footers/footer-v1.css' %}">
<!-- CSS Implementing Plugins -->
<link rel="stylesheet" href="{% static 'assets/plugins/fancybox/source/jquery.fancybox.css' %}">
<link rel="stylesheet" href="{% static 'assets/plugins/animate.css' %}">
<link rel="stylesheet" href="{% static 'assets/plugins/line-icons/line-icons.css' %}">
<link rel="stylesheet" href="{% static 'assets/plugins/font-awesome/css/font-awesome.min.css' %}">
<link rel="stylesheet" href="{% static 'assets/plugins/brand-buttons/brand-buttons.css' %}">
<link rel="stylesheet" href="{% static 'assets/plugins/revolution-slider/rs-plugin/css/settings.css' %}" type="text/css" media="screen">
<!--[if lt IE 9]><link rel="stylesheet" href="{% static 'assets/plugins/revolution-slider/rs-plugin/css/settings-ie8.css' %}" type="text/css" media="screen"><![endif]-->
<!-- CSS Page Style -->
<link rel="stylesheet" href="{% static 'assets/css/pages/shortcode_timeline1.css' %}">
<!-- CSS Theme -->
<link rel="stylesheet" href="{% static 'assets/css/theme-colors/blue.css' %}" id="style_color">
<link rel="stylesheet" href="{% static 'assets/css/theme-skins/blue.css' %}">
<link href="{% static 'pro_css/app/appblog.css' %}" rel="stylesheet">
<!-- CSS Customization -->
<link rel="stylesheet" href="{% static 'assets/css/custom.css' %}">
<!--[if lt IE 9]>
<script src="{% static "js/html5shiv.js" %}"></script>
<script src="{% static "js/respond.min.js" %}"></script>
<![endif]-->
{% block extra_head %}{% endblock %}
</head>
<body class="header-fixed">
<!--=== Header ===-->
<div class="header-v3 header-sticky">
<!-- Navbar -->
<div class="navbar navbar-default mega-menu" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="fa fa-bars"></span>
</button>
<a class="navbar-brand" href="/home">
<img id="logo-header" src="{% static 'assets/img/navbar.png' %}" alt="Logo">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse mega-menu navbar-responsive-collapse">
<div class="container">
<ul class="nav navbar-nav">
<!-- Home -->
<li>
{% block navbar_dropdown_menu %}{% page_menu "pages/menus/dropdown.html" %}{% endblock%}
</li>
<!-- End Home -->
<!-- Search Block -->
<li>
<i class="search fa fa-search search-btn"></i>
<div class="search-open">
<div class="input-group animated fadeInDown">
{% block navbar_search_form %}{% search_form %}{% endblock %}
</div>
</div>
</li>
<!-- End Search Block -->
</ul>
</div><!--/end container-->
</div><!--/navbar-collapse-->
</div>
</div>
<!-- End Navbar -->
</div>
<!--=== End Header ===-->
<!--=== Breadcrumbs v3 ===-->
<div class="breadcrumbs-v3 img-v3 text-center">
<div class="container">
<h2 style="color:#ffffff;"><strong>{{ page.meta_title }}</strong></h2>
</div><!--/end container-->
</div>
<!--=== End Breadcrumbs v3 ===-->
<div class="container">
{% nevercache %}
{% if messages %}
<div class="messages">
{% for message in messages %}
<div class="alert alert-dismissable alert-{{ message.tags }}" data-alert="alert">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
{{ message }}
</div>
{% endfor %}
</div>
{% endif %}
{% endnevercache %}
<div class="bg-color-light parallax-bg parallaxBg1">
<div class="container content">
<div class="row blog-page">
<div class="col-md-8">
<!--Post-->
<div class="blog margin-bottom-40">
<!-- Calendar -->
<h2><strong><a href="">{% block title %}{% endblock %}</a></strong></h2>
<div class="tag-box tag-box-v2 box-shadow shadow-effect-1">
<h4>{% block main %}{% endblock %}</h4>
</div>
</div>
</div>
<!-- End Left Sidebar -->
<!-- Right Sidebar -->
<div class="col-md-4 magazine-page">
<!-- UpComing Event -->
<div class="posts margin-bottom-40">
<dl class="dl-horizontal">
{% upcoming_events %}
</dl>
</div>
<!-- End UpComing Event -->
</div>
<!-- End Right Sidebar -->
<div class="col-md-3 right">
{% nevercache %}
{% include "includes/language_selector.html" %}
{% include "includes/user_panel.html" %}
{% endnevercache %}
<div class="panel panel-default">
<div class="panel-body">
{% block right_panel %}
{% ifinstalled mezzanine.twitter %}
{% include "twitter/tweets.html" %}
{% endifinstalled %}
{% endblock %}
</div>
</div>
</div>
</div><!--/row-->
</div><!--/container--></div>
<!--=== End Content Part ===-->
</div>
<!--=== Footer Version 1 ===-->
<div class="footer-v1">
<div class="footer">
<div class="container ">
<div class="row">
<div class="col-md-3 md-margin-bottom-40">
<a href="/home"><img id="logo-footer" class="footer-logo" src="{% static 'pro_images/pythonfooter.png' %}" alt=""></a>
</div>
<!-- Link List -->
<div class="col-md-4 md-margin-bottom-40">
<div class="headline"><h2>JOIN US ON</h2></div>
<div class="row" align="center">
<a href="http://bit.ly/PyGhTelegram" target="_blank">
<img src="{% static 'social/telegram.png' %}" class="dpg-icon" alt="Python Ghana Telegram" class="img-responsive hover-effect tooltips" alt="" data-toggle="tooltip" data-placement="right" title="Our Telegram Group" data-original-title="Tooltip on right">
</a>
<a href="https://twitter.com/pyghana" target="_blank">
<img src="{% static 'social/social-twitter.png' %}" class="dpg-icon" alt="Python Ghana Twitter" class="img-responsive hover-effect tooltips" alt="" data-toggle="tooltip" data-placement="right" title="Our Twitter Page" data-original-title="Tooltip on right">
</a>
<a href="https://github.com/pythonghana" target="_blank">
<img src="{% static 'social/social-github1.png' %}" class="dpg-icon" alt="Python Ghana Github" class="img-responsive hover-effect tooltips" alt="" data-toggle="tooltip" data-placement="right" title="Our GitHub Repository" data-original-title="Tooltip on right">
</a>
<a href="https://pythonghana.slack.com/" target="_blank">
<img src="{% static 'social/slack-logo.png' %}" class="dpg-icon" alt="Python Ghana Slack" class="img-responsive hover-effect tooltips" alt="" data-toggle="tooltip" data-placement="right" title="Our Slack Page" data-original-title="Tooltip on right">
</a>
<a href="https://mail.python.org/mm3/mailman3/lists/pythonghana.python.org/" target="_blank">
<img src="{% static 'social/mail.png' %}" class="dpg-icon" alt="Python Ghana Linkedin" class="img-responsive hover-effect tooltips" alt="" data-toggle="tooltip" data-placement="right" title="Our Mailing List" data-original-title="Tooltip on right">
</a>
</div>
</div><!--/col-md-3-->
<!-- End Link List -->
<!-- Link List -->
<div class="col-md-4 md-margin-bottom-40">
<div class="headline"><h2>Useful Links</h2></div>
<ul class="list-unstyled link-list">
<li>{% page_menu "pages/menus/footer.html" %}</li>
</ul>
</div><!--/col-md-3-->
<!-- End Link List -->
</div>
</div>
</div><!--/footer-->
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-md-6">
<p>
{% now "Y" %} © All Rights Reserved Python Ghana. <br> Python/Django web hosting for Python Ghana is generously donated by <a href="https://www.pythonanywhere.com/?affiliate_id=002cb45d" target="/">Python Anywhere</a>
</p>
</div>
</div>
</div>
</div><!--/copyright-->
</div>
<!--=== End Footer Version 1 ===-->
<!-- JS Global Compulsory -->
<script type="text/javascript" src="{% static 'assets/plugins/jquery/jquery.min.js' %}"></script>
<script type="text/javascript" src="{% static 'assets/plugins/jquery/jquery-migrate.min.js' %}"></script>
<script type="text/javascript" src="{% static 'assets/plugins/bootstrap/js/bootstrap.min.js' %}"></script>
<!-- JS Implementing Plugins -->
<script type="text/javascript" src="{% static 'assets/plugins/back-to-top.js' %}"></script>
<script type="text/javascript" src="{% static 'assets/plugins/smoothScroll.js' %}"></script>
<script type="text/javascript" src="{% static 'assets/plugins/jquery.parallax.js' %}"></script>
<script type="text/javascript" src="{% static 'assets/plugins/counter/waypoints.min.js' %}"></script>
<script type="text/javascript" src="{% static 'assets/plugins/fancybox/source/jquery.fancybox.pack.js' %}"></script>
<!-- JS Customization -->
<script type="text/javascript" src="{% static 'assets/js/custom.js' %}"></script>
<!-- JS Page Level -->
<script type="text/javascript" src="{% static 'assets/js/app.js' %}"></script>
<script type="text/javascript" src="{% static 'assets/js/plugins/style-switcher.js' %}"></script>
<script type="text/javascript" src="{% static 'assets/js/plugins/fancy-box.js' %}"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
App.init();
FancyBox.initFancybox();
});
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.min.js"></script>
<!--[if lt IE 9]>
<script src="assets/plugins/respond.js"></script>
<script src="assets/plugins/html5shiv.js"></script>
<script src="assets/plugins/placeholder-IE-fixes.js"></script>
<![endif]-->
</body>
</html>