-
Notifications
You must be signed in to change notification settings - Fork 85
/
index.html
267 lines (252 loc) · 14.9 KB
/
index.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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
---
---
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property="og:url" content="https://fossiiita.github.io/opencodecollab/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Opencode" />
<meta property="og:description" content="A mini GSoC like Open Source event. Join now and start solving issues on GitHub to win amazing cash prizes and cool t-shirts!" />
<meta property="og:image" content="https://fossiiita.github.io/opencodecollab/images/opencode-og.jpg" />
<link rel="icon" sizes="20x20" href="images/icons/favicon.png">
<link href="//fonts.googleapis.com/css?family=Architects+Daughter" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="stylesheets/bootstrap.min.css" media="screen">
<link rel="stylesheet" href="stylesheets/main.css" media="screen">
<link rel="stylesheet" href="stylesheets/loader.css" media="screen">
<link rel="stylesheet" href="stylesheets/footer-distributed.css">
<link rel="stylesheet" href="stylesheets/style.css">
<link rel="stylesheet" type="text/css" href="stylesheets/countdown.css">
<script type="text/javascript">
$(document).ready(function(){
/* Get iframe src attribute value i.e. YouTube video url
and store it in a variable */
var url = $("#cartoonVideo").attr('src');
/* Remove iframe src attribute on page load to
prevent autoplay in background */
$("#cartoonVideo").attr('src', '');
/* Assign the initially stored url back to the iframe src
attribute when modal is displayed */
$("#myModal").on('shown.bs.modal', function(){
$("#cartoonVideo").attr('src', url);
});
/* Assign empty url value to the iframe src attribute when
modal hide, which stop the video playing */
$("#myModal").on('hide.bs.modal', function(){
$("#cartoonVideo").attr('src', '');
});
});
</script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>OpenCode</title>
</head>
<body>
{% include navbar.html %}
<!-- Main Content -->
<section class="main-content">
<!-- Mentors Section -->
<section class="mentors" id="mentors" href="#mentors">
<div class="row mentors-wrapper">
<!-- Start ignoring BootLintBear -->
<h2>MENTORS</h2>
<!-- Stop ignoring -->
{% for mentor in site.data.mentors %}
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
<div class="card-wrapper">
<div class="flip-container" ontouchstart="this.classList.toggle('hover');">
<div class="flipper">
<div class="front">
<div class="card">
<div class="avatar">
{% if mentor.image %}
<img src="images/mentors/{{mentor.image}}" alt="{{ mentor.name }}">
{% else %}
<img src="images/mentors/member.png" alt="{{ mentor.name }}">
{% endif %}
<p style="display: inline-block;">{{mentor.name}}</p>
</div>
</div>
</div>
<div class="back">
<div class="card">
<p style="padding:15px;">Connect with this mentor!</p>
<hr>
<center>
{% if mentor.github %}
<a href="https://github.com/{{ mentor.github }}"><i class="fa fa-2x fa-github"></i></a>
{% endif %}
{% if mentor.blog %}
<a href="{{ mentor.blog }}"><i class="fa fa-2x fa-rss-square"></i></a>
{% endif %}
{% if mentor.twitter %}
<a href="https://twitter.com/{{ mentor.twitter }}"><i class="fa fa-2x fa-twitter"></i></a>
{% endif %}
{% if mentor.facebook %}
<a href="https://www.facebook.com/{{ mentor.facebook }}"><i class="fa fa-2x fa-facebook-square"></i></a>
{% endif %}
</center>
</div>
</div>
</div>
</div>
</div>
<br><br>
</div>
{% endfor %}
</div>
</section>
<!-- End of Mentor Section -->
<!-- Student Section -->
<section class="students-sec" id="students" href="#students">
<div class="row students-wrapper">
<!-- Start ignoring BootLintBear -->
<h2>Participants</h2>
<!-- Stop ignoring -->
{% for student in site.data.students %}
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
<div class="card-wrapper">
<div class="flip-container" ontouchstart="this.classList.toggle('hover');">
<div class="flipper">
<div class="front">
<!-- front content -->
<div class="card stu-card">
<div class="avatar">
{% if student.image %}
<img src="images/students/{{student.image}}"
alt="{{student.name}}"
width="200px" height="200px">
{% else %}
<img src="images/mentors/member.png"
alt="{{student.name}}"
width="200px" height="200px">
{% endif %}
<p style="padding-top:3px;width: 200px;display: inline-block;margin-top: 9px;">
<i class="fa fa-code"></i>
<span class="stu-name card-text" title="{{student.name}}">
{{student.name}}
</span>
</p>
</div>
</div>
</div>
<div class="back">
<!-- back content -->
<div class="card stu-card">
<div class="avatar">
{% if student.bio %}
<p style="padding:10px;width: 200px;display: inline-block;margin-top: 9px;">
{{student.bio}}
</p>
{% else %}
<p style="padding:10px;width: 200px;display: inline-block;margin-top: 9px;">
Connect with this participant!
</p>
{% endif %}
<br><hr>
<center>
{% if student.github %}
<a href="https://github.com/{{student.github}}"><i class="fa fa-3x fa-github"></i></a>
{% endif %}
{% if student.facebook %}
<a href="https://www.facebook.com/{{student.facebook}}"><i class="fa fa-3x fa-facebook-square"></i></a>
{% endif %}
{% if student.twitter %}
<a href="https://twitter.com/{{student.twitter}}"><i class="fa fa-3x fa-twitter"></i></a>
{% endif %}
</center>
</div>
</div>
</div>
</div>
</div>
</div>
<br><br>
</div>
{% endfor %}
</div>
</section>
<!-- End of Student Section -->
</div> <!-- End of .container inside the main-wrapper section -->
<!----- Student blog section ------>
<section class="blog-sec" id="blog" href="#blog">
<div class="row Blogs-wrapper" id="blogm">
<!-- Start ignoring BootLintBear -->
<h2 align="center">Participant Blogs</h2>
<!-- Stop ignoring -->
{% for blog in site.data.blog %}
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
<div class="card-wrapper">
<div class="flip-container" ontouchstart="this.classList.toggle('hover');">
<div class="flipper">
<div class="front">
<!-- front content -->
<div class="card stu-card">
<div class="avatar">
{% if blog.image %}
<img src="images/blog/{{blog.image}}"
width="200px" height="200px">
{% else %}
width="200px" height="200px">
{% endif %}
<p style="padding-top:3px;width: 200px;display: inline-block;margin-top: 9px;">
<i class="fa fa-code"></i>
<span class="stu-name card-text" title="{{blog.name}}">
{{blog.name}}
</span>
</p>
</div>
</div>
</div>
<div class="back">
<!-- back content -->
<div class="card stu-card">
<div class="avatar">
{% if blog.link %}
<p style="padding:10px;width: 200px;display: inline-block;margin-top: 9px;">
{{blog.blogname}}
</p>
<p style="padding:10px;width: 200px;display: inline-block;margin-top: 9px;">
<a href="{{blog.link}}">Click To See Blog</a>
</p>
{% else %}
<p style="padding:10px;width: 200px;display: inline-block;margin-top: 9px;">
No Working Link!
</p>
{% endif %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</section>
<!---end Student blog section-->
{% include footer.html %}
<!-- End of Main Content -->
<!-- Scripts -->
<script>
((window.gitter = {}).chat = {}).options = {
room: 'opencode2017/Lobby'
};
</script>
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async defer></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="javascripts/countdown.js"></script>
<script src="javascripts/js-yaml.min.js"></script>
<script src="javascripts/main.js"></script>
<script src="javascripts/index.js"></script>
<script src="//use.fontawesome.com/7f8b61349a.js" async></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous" async></script>
<script src="javascripts/loader.js"></script>
</body>
</html>