-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlayout.html
More file actions
115 lines (104 loc) · 5.67 KB
/
layout.html
File metadata and controls
115 lines (104 loc) · 5.67 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
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
<!DOCTYPE html>
<html>
<head>
{% include 'page.header.html' %}
{% if site.title %}<title>{% if title %}{{ title }} – {% endif %}{{ site.title }}{% if not title and site.subtitle %} – {{ site.subtitle }}{% endif %}</title>{% endif %}
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/">Python India</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="{{ 'active' if get_url() == '/' or get_url().startswith('/blog/') }}"><a href="/">Blog</a></li>
<!--
<li><a href="/wiki">Wiki</a></li>
<li><a href="/planet">Planet</a></li>
<li id="nav-jobs"><a href="/jobs/">Jobs</a></li>
-->
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<script type="text/javascript">
$(function() {
if (document.location.pathname == "/jobs/") {
$(".nav li").removeClass("active");
$(".nav li#nav-jobs").addClass("active");
}
});
</script>
<!--
<header class="header">
<div class="container">
<h1><a href="{{ get_url() }}">{{ site.title }}</a></h1>
</div>
</header>
-->
<!--
<div id="container">
<div id="nav">
<ul>
<li><a href="{{ get_url() }}">Blog</a></li>
<li><a href="{{ get_url('archives/') }}">Archives</a></li>
{% if site.feed %}<li><a href="{{ get_url('feed.xml') }}">Feed</a></li>{% endif %}
</ul>
{% if site.social.values()|sort(true)|first %}
<ul id="social">
{% if site.social.dribbble %}<li><a href="http://dribbble.com/{{ site.social.dribbble }}"><img src="{{ get_asset('images/social/dribbble.png') }}" width="16" height="16" alt="Dribbble"></a></li>{% endif %}
{% if site.social.facebook %}<li><a href="https://www.facebook.com/{{ site.social.facebook }}"><img src="{{ get_asset('images/social/facebook.png') }}" width="16" height="16" alt="Facebook"></a></li>{% endif %}
{% if site.social.github %}<li><a href="https://github.com/{{ site.social.github }}"><img src="{{ get_asset('images/social/github.png') }}" width="16" height="16" alt="GitHub"></a></li>{% endif %}
{% if site.social.google_plus %}<li><a href="https://plus.google.com/{{ site.social.google_plus }}"><img src="{{ get_asset('images/social/google-plus.png') }}" width="16" height="16" alt="Google+"></a></li>{% endif %}
{% if site.social.lastfm %}<li><a href="http://www.last.fm/user/{{ site.social.lastfm }}"><img src="{{ get_asset('images/social/lastfm.png') }}" width="16" height="16" alt="Last.fm"></a></li>{% endif %}
{% if site.social.stack_overflow %}<li><a href="http://stackoverflow.com/users/{{ site.social.stack_overflow }}"><img src="{{ get_asset('images/social/stack-overflow.png') }}" width="16" height="16" alt="Stack Overflow"></a></li>{% endif %}
{% if site.social.steam %}<li><a href="http://steamcommunity.com/id/{{ site.social.steam }}"><img src="{{ get_asset('images/social/steam.png') }}" width="16" height="16" alt="Steam"></a></li>{% endif %}
{% if site.social.twitter %}<li><a href="https://twitter.com/#!/{{ site.social.twitter }}"><img src="{{ get_asset('images/social/twitter.png') }}" width="16" height="16" alt="Twitter"></a></li>{% endif %}
</ul>
{% endif %}
</div>
<div id="header">
<h1><a href="{{ get_url() }}">{{ site.title }}</a></h1>
{% if site.subtitle %}<h2>{{ site.subtitle }}</h2>{% endif %}
</div>
-->
<div class="container">
<div class="row">
<div id="content" class="span9">
{% block content %}{% endblock %}
</div>
<div id="sidebar" class="span3">
<h4>Python Usergroups in India</h4>
<ul class="unstyled">
<li><a href="http://bangalore.python.org.in/">Bangalore</a></li>
<li><a href="http://chennaipy.org/">Chennai</a></li>
<li><a href="https://pydelhi.org/">Delhi</a></li>
<li><a href="https://groups.google.com/group/hyderabadpython">Hyderabad</a></li>
<li><a href="https://groups.google.com/group/python-kerala">Kerala</a></li>
<li><a href="https://groups.google.com/forum/#!forum/mumpy">Mumbai</a></li>
<li><a href="http://mysore.python.org.in/index.html">Mysore</a></li>
<li><a href="https://www.facebook.com/PyGuj">Gujarat</a></li>
<li><a href="http://pune.python.org.in/index.html">Pune</a></li>
<li><a href="https://pyjaipur.github.io">Jaipur</a></li>
</ul>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p>
{% if site.author %}Copyright © {{ none|date('%Y') }} {{ site.author }} | {% endif %}
Powered by <a href="http://mynt.mirroredwhite.com/">mynt</a> |
Hosted by <a href="http://e2enetworks.com/">E2E Networks</a>
</p>
</div>
</footer>
</div>
</body>
</html>