-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathbase.html
126 lines (116 loc) · 5.4 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
{% load static %}
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="utf-8">
<title>
{% block title %}{{ BLOG_SETTINGS.TITLE }}{% endblock %}
{% if page_title %}— {{ page_title }}{% endif %}
</title>
<meta name="description" content="{{ BLOG_SETTINGS.DESCRIPTION }}">
<link rel="shortcut icon" type="image/favicon" href="{% static 'images/favicon.ico' %}">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}" />
<link rel="stylesheet" href="{% static 'css/font-awesome.min.css' %}" />
<link rel="stylesheet" href="{% static 'css/main.css' %}" />
<link href="{% url 'blog:rss-feed' %}" type="application/rss+xml" rel="alternate" />
<!--[if lt IE 9]><script src="{% static 'js/html5shiv.js' %}"></script><![endif]-->
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
{% block head %}
{% endblock head %}
</head>
<body>
<!--
[if lt IE 7]>
<p class="chromeframe">
You are using an outdated browser.
<a href="http://browsehappy.com/">Upgrade your browser today</a>
or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a>
to better experience this site.
</p>
<![endif]
-->
<div class="collapse" id="pyistanbul">
<div class="container fixed-info">
<div class="row">
<div class="col-md-4 info what">
<div class="sub-title">Nedir?</div>
<p>İstanbul'daki Python programcıları topluluğudur. Eğer Python ilginizi çekiyorsa siz de bu topluluğa katılabilirsiniz.</p>
</div>
<div class="col-md-4 info contact">
<div class="sub-title">Nasıl iletişim kurabilirim?</div>
<p>Her gün Freenode'daki <a href="#">#pyistanbul</a> kanalında buluşuyoruz.</p>
</div>
<div class="col-md-4 info support">
<div class="sub-title">Desteğe ihtiyacım var</div>
<p>IRC'de ya da python-istanbul e-posta listesinde sorularınızı sorabilirsiniz.</p>
</div>
</div>
</div>
</div>
<header class="{% if page == 'home' %}_home{% endif %}">
<nav class="navbar navbar-expand-sm">
<div class="mx-auto d-sm-flex d-block flex-sm-nowrap">
<div class="text-center">
<ul class="navbar-nav">
<li class="nav-item">
<a data-toggle="collapse" href="#pyistanbul">NEDİR?</a>
</li>
<li class="nav-item {% if page == 'presentation' %}active{% endif %}">
<a href="{% url 'presentations:index' %}">SUNUMLAR</a>
</li>
<li class="nav-item logo">
<a href="{% url 'blog:home' %}">
<img src="{% static 'images/logo.svg' %}" alt="Pyistanbul">
</a>
</li>
<li class="nav-item {% if page == 'people' %}active{% endif %}"><a href="{% url 'people:index' %}">İNSANLAR</a></li>
<li class="nav-item {% if page == 'blog' %}active{% endif %}"><a href="#">BLOG</a></li>
</ul>
</div>
</div>
</nav>
</header>
{% block cover %}
{% endblock %}
{% block content %}
{% endblock content %}
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="col-title">NEWSLETTER</div>
<form>
<div class="form-group">
<input type="email" class="form-control" placeholder="Type your email address">
</div>
<button class="btn btn-block">Send</button>
</form>
</div>
<div class="col-md-4">
<div class="col-title">GITHUB</div>
<a class="github" href="#">pyistanbul</a>
</div>
<div class="col-md-4">
<div class="col-title">CONNECT WITH US</div>
</div>
</div>
<div class="row justify-content-center copyright"><span>2015 © PyIstanbul</span></div>
</div>
</footer>
<script src="{% static 'js/jquery-3.3.1.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<script src="{% static 'js/main.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-36021524-2', 'pyistanbul.org');
ga('send', 'pageview');
</script>
</body>
</html>