This repository has been archived by the owner on Sep 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathindex.html
395 lines (310 loc) · 17.4 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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
---
layout: default
title: Europe Code Week
---
<section id="slider" class="slider-parallax full-screen force-full-screen with-header swiper_wrapper page-section clearfix">
<div class="swiper-container swiper-parent">
<div class="swiper-wrapper">
<div class="swiper-slide dark" style="background-image: url('img/ambassadors.jpg');">
<div class="container clearfix">
<div class="slider-caption slider-caption-center">
<div id="countdown-ex1" class="countdown countdown-large coming-soon divcenter bottommargin" style="max-width:700px;"></div>
<script>
$(function($){
var newDate = new Date(2018, 9, 6);
$('#countdown-ex1').countdown({until: newDate});
});
</script>
<h2 data-caption-animate="fadeInUp">CODEWEEK.EU</h2>
<p data-caption-animate="fadeInUp" data-caption-delay="200">6th — 21st October 2018 <a href="https://twitter.com/search?q=%23codeEU&f=realtime">#codeEU</a></p>
</div>
</div>
</div>
</div>
<a href="#" data-scrollto="#section-codeweek" class="one-page-arrow dark">
<i class="icon-angle-down infinite animated fadeInDown"></i>
</a>
</div>
<script>
$(function($){
var swiperSlider = new Swiper('.swiper-parent',{
paginationClickable: false,
slidesPerView: 1,
grabCursor: true,
onSwiperCreated: function(swiper){
$('[data-caption-animate]').each(function(){
var $toAnimateElement = $(this);
var toAnimateDelay = $(this).attr('data-caption-delay');
var toAnimateDelayTime = 0;
if( toAnimateDelay ) { toAnimateDelayTime = Number( toAnimateDelay ) + 750; } else { toAnimateDelayTime = 750; }
if( !$toAnimateElement.hasClass('animated') ) {
$toAnimateElement.addClass('not-animated');
var elementAnimation = $toAnimateElement.attr('data-caption-animate');
setTimeout(function() {
$toAnimateElement.removeClass('not-animated').addClass( elementAnimation + ' animated');
}, toAnimateDelayTime);
}
});
},
onSlideChangeStart: function(swiper){
$('#slide-number-current').html(swiper.activeIndex + 1);
$('[data-caption-animate]').each(function(){
var $toAnimateElement = $(this);
var elementAnimation = $toAnimateElement.attr('data-caption-animate');
$toAnimateElement.removeClass('animated').removeClass(elementAnimation).addClass('not-animated');
});
},
onSlideChangeEnd: function(swiper){
$('#slider .swiper-slide').each(function(){
if($(this).find('video').length > 0) { $(this).find('video').get(0).pause(); }
});
$('#slider .swiper-slide:not(".swiper-slide-active")').each(function(){
if($(this).find('video').length > 0) {
if($(this).find('video').get(0).currentTime != 0 ) $(this).find('video').get(0).currentTime = 0;
}
});
if( $('#slider .swiper-slide.swiper-slide-active').find('video').length > 0 ) { $('#slider .swiper-slide.swiper-slide-active').find('video').get(0).play(); }
$('#slider .swiper-slide.swiper-slide-active [data-caption-animate]').each(function(){
var $toAnimateElement = $(this);
var toAnimateDelay = $(this).attr('data-caption-delay');
var toAnimateDelayTime = 0;
if( toAnimateDelay ) { toAnimateDelayTime = Number( toAnimateDelay ) + 300; } else { toAnimateDelayTime = 300; }
if( !$toAnimateElement.hasClass('animated') ) {
$toAnimateElement.addClass('not-animated');
var elementAnimation = $toAnimateElement.attr('data-caption-animate');
setTimeout(function() {
$toAnimateElement.removeClass('not-animated').addClass( elementAnimation + ' animated');
}, toAnimateDelayTime);
}
});
}
});
$('#slider-arrow-left').on('click', function(e){
e.preventDefault();
swiperSlider.swipePrev();
});
$('#slider-arrow-right').on('click', function(e){
e.preventDefault();
swiperSlider.swipeNext();
});
$('#slide-number-current').html(swiperSlider.activeIndex + 1);
$('#slide-number-total').html(swiperSlider.slides.length);
});
</script>
</section>
<!-- Page Sub Menu -->
<div id="page-menu">
<div id="page-menu-wrap">
<div class="container clearfix">
<div class="menu-title">CodeWeek <span>EU</span></div>
<nav class="one-page-menu">
<ul>
<li><a href="#section-why" data-href="#section-why"><div>Why coding?</div></a></li>
<li><a href="#section-join" data-href="#section-join"><div>Get involved</div></a></li>
<li><a href="#section-past" data-href="#section-past"><div>Code Week 2017</div></a></li>
<li><a href="#section-partners" data-href="#section-partners"><div>Partners</div></a></li>
<li><a href="#section-contact" data-href="#section-contact"><div>Contact</div></a></li>
</ul>
</nav>
<div id="page-submenu-trigger"><i class="icon-reorder"></i></div>
</div>
</div>
</div>
<!-- #page-menu end -->
<!-- Content -->
<section id="content">
<div class="content-wrap">
<section id="section-intro" class="page-section">
<div class="container clearfix">
<div class="heading-block bottommargin-lg center">
<h2>CodeWeek</h2>
<span>
Europe Code Week is a grassroots initiative which aims to bring coding and digital literacy to everybody in a fun and engaging way.<br>
<strong>6-21 October 2018</strong>
</span>
</div>
</div>
</section>
<section id="section-why" class="page-section topmargin">
<div class="container clearfix">
<div class="heading-block center">
<h2>Why learn to code?</h2>
<span></span>
</div>
<div class="col_half bottommargin">
<img data-animate="fadeInLeftBig" src="img/coding-clubs-finland.jpg" alt="Coding clubs in Finland">
</div>
<div class="col_half bottommargin-lg col_last">
<p>Today we live in a world that has been affected by rapid advances in technology. The way we work, communicate, shop and think has changed dramatically. In order to cope with these rapid changes and to make sense of the world around us, we need to not only develop our understanding of how technology works, but also develop skills and capabilities, that will help us to adapt to living in this new era.</p>
<p>Learning to code helps us to make sense of how things work, explore ideas and make things, for both work and play. What’s more it helps us to unleash our creativity and work collaboratively with wonderful people both near us and all over the world.</p>
</div>
</div>
</section>
<section id="section-join" class="page-section section">
<div class="heading-block center">
<h2>Get involved!</h2>
<span></span>
</div>
<div class="container clearfix">
<div class="col_one_third">
<div class="heading-block fancy-title nobottomborder title-bottom-border">
<h4>Organize an event</h4>
</div>
<p>
Become a part of Code Week by organizing an event. Make a difference by inspiring and motivating others.
</p>
<p>
Anyone is welcome to organize an event. Just pick a topic and a target audience and <a href="http://events.codeweek.eu/add/">add your event</a> to <a href="http://events.codeweek.eu/">the map</a>. You can even use our <a href="http://events.codeweek.eu/guide/">toolkit for organizers</a> to get started.
</p>
<p>
If you need help or have a question you can get in touch with <a href="http://events.codeweek.eu/ambassadors/">EU Code Week Ambassadors</a> in your country.
</p>
<a href="http://events.codeweek.eu" class="button button-border button-rounded button-large">Become an organizer</a>
</div>
<div class="col_one_third">
<div class="heading-block fancy-title nobottomborder title-bottom-border">
<h4>Join an event</h4>
</div>
<p>
Coding is for everyone. Try something new and discover the fun of coding by joining <a href="http://events.codeweek.eu/">an event near you</a>.
</p>
<p>
There are plenty of events for any age and a variety of topics. Participation is free of charge and there are no prerequisites.
</p>
<p>
There's also a <a href="/resources/">list of resources</a> to help you get started with coding online right now.
</p>
<a href="http://events.codeweek.eu" class="button button-border button-rounded button-large">Browse events</a>
</div>
<div class="col_one_third col_last">
<div class="heading-block fancy-title nobottomborder title-bottom-border">
<h4>Spread the word</h4>
</div>
<p>
Help the cause by <a href="http://blog.codeweek.eu">spreading the word</a> so that more people can learn about Code Week. If you know people who would be willing to organize an event, let them know about Code Week.
</p>
<p>
Have an inspirational story to share? <a href="http://blog.codeweek.eu/submit">Post it to our blog</a> and we will share it.
</p>
<p>
We're on Twitter as <a href="https://twitter.com/CodeWeekEU">@CodeWeekEU</a>, on <a href="https://www.facebook.com/codeEU">Facebook</a> and we use the <a href="https://twitter.com/search?q=%23codeEU&f=realtime">#codeEU</a> hashtag.
</p>
<a href="http://blog.codeweek.eu" class="button button-border button-rounded button-large">See what's going on</a>
</div>
<div class="clear"></div>
<!--
<div class="fancy-title title-dotted-border title-center">
<h2><span>Join</span> our campaigns</h2>
</div>
<div class="col_one_third">
<div class="feature-box fbox-center fbox-border fbox-effect noborder">
<div class="fbox-icon">
<a href="/odetocode/"><i class="icon-play i-alt"></i></a>
</div>
<h3>Ode to code video contest</h3>
<p>Take part in the contest by making a short video to report the incredible effects of the "Ode to code" tune on people, robots, and objects.</p>
</div>
</div>
<div class="col_one_third">
<div class="feature-box fbox-center fbox-border fbox-effect noborder">
<div class="fbox-icon">
<a href="/codeweek4all/"><i class="icon-study i-alt"></i></a>
</div>
<h3>CodeWeek4all challenge</h3>
<p>Challenge your school to engage all the students in coding during Europe Code Week 2015 and get a Certificate of Excellence in Coding Literacy from the European Commission.</p>
</div>
</div>
<div class="col_one_third col_last">
<div class="feature-box fbox-center fbox-border fbox-effect noborder">
<div class="fbox-icon">
<a href="https://www.thunderclap.it/projects/31230-codeweekeu"><i class="icon-bullhorn i-alt"></i></a>
</div>
<h3>Thunderclap campaign</h3>
<p>Join our thunderclap campaign to announce the beginning of Europe Code Week 2015 on October 10.</p>
</div>
</div>
-->
</div>
</section>
<section id="section-past" class="page-section topmargin-lg">
<div class="container clearfix">
<div class="heading-block bottommargin-lg center">
<h2>In the last edition</h2>
<span>
Europe Code Week 2017 was a huge success.
<br>Let's make this year an even bigger one.
</span>
</div>
<div class="container clearfix">
<div class="col_one_fourth nobottommargin center" data-animate="bounceIn">
<i class="i-plain i-xlarge divcenter nobottommargin icon-line-flag"></i>
<div class="counter counter-lined"><span data-from="1" data-to="52" data-refresh-interval="5" data-speed="2000"></span></div>
<h5>Countries</h5>
</div>
<div class="col_one_fourth nobottommargin center" data-animate="bounceIn" data-delay="200">
<i class="i-plain i-xlarge divcenter nobottommargin icon-location"></i>
<div class="counter counter-lined"><span data-from="692" data-to="788" data-refresh-interval="10" data-speed="2500"></span></div>
<h5>CodeWeek4All awardees</h5>
</div>
<div class="col_one_fourth nobottommargin center" data-animate="bounceIn" data-delay="400">
<i class="i-plain i-xlarge divcenter nobottommargin icon-calendar2"></i>
<div class="counter counter-lined"><span data-from="23043" data-to="25089" data-refresh-interval="100" data-speed="2500"></span></div>
<h5>Events</h5>
</div>
<div class="col_one_fourth nobottommargin center col_last" data-animate="bounceIn" data-delay="600">
<i class="i-plain i-xlarge divcenter nobottommargin icon-group"></i>
<div class="counter counter-lined"><span data-from="968537" data-to="1099394" data-refresh-interval="100" data-speed="3000"></span>+</div>
<h5>Participants</h5>
</div>
</div>
</div>
</section>
<section id="section-partners" class="page-section topmargin-lg">
<div class="container clearfix">
<div class="heading-block bottommargin-lg center">
<h2>Partners And Sponsors</h2>
<span>Help us expand the outreach and the impact of Code Week</span>
<p>
Code Week is a grassroots initiative led by volunteers which has an outreach to hundreds of thousands of people around the world. We constantly seek partners and sponsors to help us expand. If you would like to be part of our community and sponsor our activities, please contact us.
</p>
<a href="mailto:info@codeweek.eu" class="button button-border button-rounded button-large">Get in touch</a></p>
</div>
<div class="">
</div>
<div class="clear"></div>
<ul class="clients-grid grid-4 nobottommargin clearfix">
<li><a href="https://www.apple.com/uk/everyone-can-code/"><img src="img/partners/apple.png" alt="Apple"></a></li>
<li><a href="http://www.techsoupeurope.org/"><img src="img/partners/techsoup.png" alt="Tech Soup"></a></li>
<li><a href="http://programamos.es"><img src="img/partners/colabora_programamos.png" alt="Programamos"></a></li>
<li><a href="http://drscratch.programamos.es"><img src="img/partners/colabora_drscratch.png" alt="Dr.Scratch"></a></li>
<li><a href="http://www.publiclibraries2020.eu"><img src="img/partners/colabora_PublicLibraries2020.png" alt="Public Libraries 2020"></a></li>
<li><a href="http://ec.europa.eu/digital-agenda/en/grand-coalition-digital-jobs-0"><img src="img/partners/digital-skills.png" alt="Grand Coalition for Digital Jobs"></a></li>
<li><a href="http://coderdojo.org"><img src="img/partners/colabora_coderdojo.png" alt="CoderDojo"></a></li>
<li><a href="http://www.africacodeweek.org/"><img src="img/partners/colabora_africacodeweek.png" alt="Africa Code Week"></a></li>
<li><a href="http://www.allyouneediscode.eu/"><img src="img/partners/colabora_aynic.png" alt="All you need is code"></a></li>
<li><a href="http://www.eun.org/"><img src="img/partners/colabora_eun.png" alt="European Schoolnet"></a></li>
<li><a href="http://scratch.mit.edu/codeweekeu"><img src="img/partners/colabora_scratch.png" alt="Scratch"></a></li>
<li><a href="http://www.ictinpractice.com/"><img src="img/partners/colabora_ict-in-practice.png" alt="ICT In Practice"></a></li>
<li><a href="http://www.neunet.it/"><img src="img/partners/colabora_neunet.png" alt="NeuNet"></a></li>
<li><a href="https://edu.google.com/resources/computerscience"><img src="img/partners/google.png" alt="Google"></a></li>
<li><a href="https://education.lego.com/en-gb/secondary/explore/c/eu-code-week"><img src="img/partners/lego.png" alt="LEGOeducation"></a></li>
<li><a href="http://www.sap.com/"><img src="img/partners/sap-logo.png" alt="SAP"></a></li>
<li><a href="http://www.stifter-helfen.de/"><img src="img/partners/stifter-helfen.png" alt="Stifter Helfen"></a></li>
<li><a href="http://eutechalliance.eu/"><img src="img/partners/eu-tech-alliance.png" alt="EU Tech Alliance"></a></li>
</ul>
</div>
</section>
<section id="section-contact" class="page-section section">
<div class="heading-block title-center">
<h2>Get in Touch with us</h2>
<span>Still have questions? Just <a href="mailto:info@codeweek.eu">drop us a line</a>.</span>
</div>
</section>
<a href="http://events.codeweek.eu" class="button button-blue button-full center tright footer-stick">
<div class="container clearfix">
Bring your ideas to life with <strong>#coding</strong> <i class="icon-caret-right" style="top:4px;"></i>
</div>
</a>
</div>
</section>
<!-- #content end -->