-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
1992 lines (1805 loc) · 87.3 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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Coolest Projects | Technologiebeurs voor jonge mensen</title>
<!-- core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/animate.min.css" rel="stylesheet">
<link href="css/owl.carousel.css" rel="stylesheet">
<link href="css/owl.transitions.css" rel="stylesheet">
<link href="css/prettyPhoto.css" rel="stylesheet">
<link href="css/main.css?v=5" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<!-- https://www.favicomatic.com/ -->
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="images/ico/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/ico/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="images/ico/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="images/ico/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="images/ico/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="images/ico/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="images/ico/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="images/ico/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="images/ico/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="images/ico/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="images/ico/favicon-128.png" sizes="128x128" />
<meta name="application-name" content="Coolest Projects Belgium" />
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="images/ico/mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="images/ico/mstile-70x70.png" />
<meta name="msapplication-square150x150logo" content="images/ico/mstile-150x150.png" />
<meta name="msapplication-wide310x150logo" content="images/ico/mstile-310x150.png" />
<meta name="msapplication-square310x310logo" content="images/ico/mstile-310x310.png" />
</head>
<!--/head-->
<body id="home" class="homepage nl">
<header id="header">
<nav id="main-menu" class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-brand">
<button class="btn" onclick="document.body.className='homepage nl';new WOW().init();location.hash='nl'">NL</button>
<button class="btn" onclick="document.body.className='homepage fr';new WOW().init();location.hash='fr'">FR</button>
<button class="btn" onclick="document.body.className='homepage en';new WOW().init();location.hash='en'">EN</button>
<!--
<a class="navbar-brand" href="index.html"><img src="images/logo.png" alt="logo"></a>
-->
</div>
</div>
<div class="collapse navbar-collapse navbar-right">
<ul class="nav navbar-nav" lang="nl">
<li class="scroll active"><a href="#home">Home</a></li>
<li class="scroll"><a href="#where">Waar</a></li>
<li class="scroll"><a href="#what">Wat</a></li>
<li class="scroll"><a href="#awards">Awards</a></li>
<li class="scroll"><a href="#jury">Jury</a></li>
<li class="scroll"><a href="#portfolio">Inspiratie</a></li>
<li class="scroll"><a href="#register">Inschrijven</a></li>
<li class="scroll"><a href="#vrijwilligers">Helpende handen</a></li>
<li class="scroll"><a href="#info">Meer info</a></li>
</ul>
<ul class="nav navbar-nav" lang="en">
<li class="scroll active"><a href="#home">Home</a></li>
<li class="scroll"><a href="#where">Where</a></li>
<li class="scroll"><a href="#what">What</a></li>
<li class="scroll"><a href="#awards">Awards</a></li>
<li class="scroll"><a href="#jury">Jury</a></li>
<li class="scroll"><a href="#portfolio">Inspiration</a></li>
<li class="scroll"><a href="#register">Register</a></li>
<li class="scroll"><a href="#vrijwilligers">Helping hands</a></li>
<li class="scroll"><a href="#info">More info</a></li>
</ul>
<ul class="nav navbar-nav" lang="fr">
<li class="scroll active"><a href="#home">Accueil</a></li>
<li class="scroll"><a href="#where">Où</a></li>
<li class="scroll"><a href="#what">Quoi</a></li>
<li class="scroll"><a href="#awards">Awards</a></li>
<li class="scroll"><a href="#jury">Jury</a></li>
<li class="scroll"><a href="#portfolio">Inspiration</a></li>
<li class="scroll"><a href="#register">Inscription</a></li>
<li class="scroll"><a href="#vrijwilligers">Helping hands</a></li>
<li class="scroll"><a href="#info">En savoir plus</a></li>
</ul>
</div>
</div>
<!--/.container-->
</nav>
<!--/nav-->
</header>
<!--/header-->
<section id="main-slider">
<div class="owl-carousel">
<div class="item" style="background-image: url(images/slider/BG1_SMALL.JPG);">
<div class="slider-inner">
<div class="container">
<div class="row">
<div class="col-sm-10">
<div class="carousel-content" lang="nl">
<h2>Coolest Projects</h2><br>
<h3><br> een tech-beurs voor jonge mensen
</h3>
<!--<a class="btn btn-primary btn-lg" href="#register">Doe mee!</a>-->
</div>
<div class="carousel-content" lang="en">
<h2>
Coolest Projects<br>
<br> a technology event for young people
</h2>
<!--<a class="btn btn-primary btn-lg" href="#register">Join us!</a>-->
</div>
<div class="carousel-content" lang="fr">
<h2>
Coolest Projects<br>
<br> Un salon tech pour les jeunes
</h2>
<!--<a class="btn btn-primary btn-lg" href="#register">Participe!</a>-->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="item" style="background-image: url(images/slider/BG2_SMALL.JPG);">
<div class="slider-inner">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="carousel-content" lang="nl">
<h2><span>Zondag 22 april 2018</span></h2>
<h3><br/><br/>
<p>
Technopolis
<br>Technologielaan 1 - 2800 Mechelen
</p></h3>
<!--<a class="btn btn-secondary btn-lg" href="#register">Doe mee!</a>-->
</div>
<div class="carousel-content" lang="en">
<h2><span>Sunday April 22nd 2018</span></h2>
<h3><br/><br/>
<p> Technopolis
<br>Technologielaan 1 - 2800 Mechelen
</p></h3>
<!--<a class="btn btn-secondary btn-lg" href="#register">Join us!</a>-->
</div>
<div class="carousel-content" lang="fr">
<h2><span>22 avril 2018</span></h2>
<p><h3><br/><br/>
Technopolis
<br>Technologielaan 1 - 2800 Mechelen
</p></h3>
<!--<a class="btn btn-secondary btn-lg" href="#register">Participe!</a>-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="cta" class="wow fadeIn">
<div class="container">
<div class="row" lang="nl">
<div class="col-sm-6 text-center">
<img src="images/logo.png" alt="Logo coolest Projects" style="width:15em"/>
</div>
<div class="col-sm-6">
<div >
<h2>Voor wie?</h2>
<p>
Ben je jonger dan 18 jaar? Hou je van creatieve dingen bouwen? Heb je alleen of samen met vrienden iets ineen gestoken? Dan is Coolest Projects helemaal voor jou! Op deze tech-beurs
toon je wat je zelf gebouwd hebt!
</p>
</div>
<div >
<h2>Waarom meedoen?</h2>
<p>
Coole dingen bouwen is leuk, ze met de wereld delen is nog leuker. Bovendien staan er leuke awards klaar!</p>
</div>
</div>
</div>
<div class="row" lang="en">
<div class="col-sm-6 text-center">
<img src="images/logo.png" alt="Logo coolest Projects" style="width:15em"/>
</div>
<div class="col-sm-6">
<h2>For who?</h2>
<p>
If you're under 18 and love to make creative tech-stuff then "Coolest Projects" is totally for you! This event is designed
for you to show the cool things you've made.
</p>
</div>
<div class="col-sm-6">
<h2>Why?</h2>
<p>
Building cool digital things is fun. Sharing them with the world is even more awesome! And there are great prizes for you
to win.
</p>
</div>
</div>
<div class="row" lang="fr">
<div class="col-sm-6 text-center">
<img src="images/logo.png" alt="Logo coolest Projects" style="width:15em"/>
</div>
<div class="col-sm-6">
<h2>Pour qui?</h2>
<p>
Tu as moins de 18 ans? Tu aimes construire des trucs créatifs? Coolest Projects est fait pour toi! Présente tes constructions à ce salon tech!
</p>
</div>
<div class="col-sm-6">
<h2>Pourquoi participer?</h2>
<p>
Construire des trucs sympas, c'est chouette. Les montrer au monde entier, c'est mieux! En plus, tu peux y gagner de super prix.
</p>
</div>
</div>
</div>
</section>
<section id="where">
<div class="container">
<div class="section-header" lang="nl">
<h2 class="section-title text-center wow fadeInDown">Waar en wanneer?</h2>
<div class="col-sm-6 text-right">
<img style="width:25em; display:inline-block;" src="images/technopolis.jpg" alt="Technopolis" />
<span style="max-width:25em;display:inline-block;" class="italic">Triptip: Wil je Coolest Projects bezoeken? Combineer dat dan met een bezoekje aan de tentoonstelling van Technopolis. Je betaalt die dag de normale inkomprijs.</span>
</div>
<div class="col-sm-6">
<p class="wow fadeInDown">
<br>
<strong>Zondag 22 april 2018</strong>
<br>
<strong>van 14:00 tot 18:00</strong><br><br>
<br> Deelnemers worden om 13:00 verwacht
<br> Gratis toegang voor bezoekers vanaf 14:00
<br> Uitreiking awards om 17:30<br><br>
<br> <strong>Technopolis</strong>
<br> <strong>Technologielaan 1 - 2800 Mechelen - België</strong>
<br>
</p>
</div>
</div>
<div class="section-header" lang="en">
<h2 class="section-title text-center wow fadeInDown">When & Where?</h2>
<div class="col-sm-6 text-right">
<img style="width:25em; display:inline-block;" src="images/technopolis.jpg" alt="Technopolis" />
<span style="max-width:25em;display:inline-block;" class="italic">Triptip: Do you want to visit Coolest Projects? Consider visiting the normal Technopolis exhibition as well. Visitors will pay the normal entry fee.</span>
</div>
<p class="wow fadeInDown">
<br>
<strong>Sunday April 22nd 2018</strong>
<br>
<strong>From 14:00 until 18:00</strong><br><br>
<br> Participants are expected to arrive at 13:00
<br> Entrance for visitors is free from 14:00
<br> Award ceremony at 17:30<br><br>
<br> <strong>Technopolis</strong>
<br> <strong>Technologielaan 1 - 2800 Mechelen - Belgium</strong>
<br>
</p>
</div>
<div class="section-header" lang="fr">
<h2 class="section-title text-center wow fadeInDown">OÙ ET QUAND?</h2>
<div class="col-sm-6 text-right">
<img style="width:25em; display:inline-block;" src="images/technopolis.jpg" alt="Technopolis" />
<span style="max-width:25em;display:inline-block;" class="italic">Bon Plan : Tu souhaites visiter Coolest Projects ? Pense aussi à visiter l’exposition Technopolis. Les visiteurs paieront l’entrée au tarif normal.</span>
</div>
<p class="wow fadeInDown">
<br>
<strong>22 Avril 2018</strong>
<br>
<strong>De 14h00 à 18h00 </strong><br><br>
<br> Les participants sont attendus à 13h00
<br> Accès gratuit pour les visiteurs à partir de 14h00
<br> Remise des prix à 17h30 <br><br>
<br> <strong>Technopolis</strong>
<br> <strong>Technologielaan 1 - 2800 Mechelen - Belgique</strong>
<br>
</p>
</div>
</div>
</section>
<section id="what">
<div class="container">
<div class="section-header" lang="nl">
<h2 class="section-title text-center wow fadeInDown">Wat?</h2>
<p class="text-center wow fadeInDown">
Tijdens Coolest Projects tonen we projecten die deelnemers zelf gebouwd hebben. Maak dus zelf:
</p>
</div>
<div class="section-header" lang="en">
<h2 class="section-title text-center wow fadeInDown">What?</h2>
<p class="text-center wow fadeInDown">
Coolest Projects is all about showcasing the technology projects made by the young people. So run to your garage and make
stuff:
</p>
</div>
<div class="section-header" lang="fr">
<h2 class="section-title text-center wow fadeInDown">Quoi?</h2>
<p class="text-center wow fadeInDown">
Lors de Coolest Projects, nous présenterons les projets construits par les participants. Crée donc toi-même :
</p>
</div>
<div class="row">
<div class="col-sm-6 wow fadeInLeft">
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-battery-quarter"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Elektronica brouwsels</h4>
<p>Krijg je geen genoeg van batterijen, ledjes, weerstanden, draden? Bouw iets tof, en kom het laten zien.
</p>
<p>Met websites als <a href="https://123d.circuits.io/" target="_blank">123D Circuits</a> kan je zelfs coole dingen bouwen
zonder 'echt' materiaal.</p>
<p>Wil je extra computerpower in je elektronica-project? Overweeg dan <a href="https://www.arduino.cc/" target="_blank">Arduino</a> of <a href="https://www.raspberrypi.org/" target="_blank">Raspberry Pi</a>.
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Electronic-thingies</h4>
<p>Can't get enough of batteries, led lights, resistors, wires, ...? Build something fancy and come show us!
</p>
<p>Using websites like <a href="https://123d.circuits.io/" target="_blank">123D Circuits</a> allows you to easily create cool things without needing the components.</p>
<p>Need more processing power? Consider <a href="https://www.arduino.cc/" target="_blank">Arduino</a> or <a href="https://www.raspberrypi.org/" target="_blank">Raspberry Pi</a>.
</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Des concoctions électroniques</h4>
<p>Batteries, témoins, résistances et câbles: tu n’en as jamais assez? Fabrique quelque chose de sympa et montre-le!
</p>
<p>Des sites Web tels que <a href="https://123d.circuits.io/" target="_blank">123D Circuits</a> t’aideront à construire des trucs sympas sans "vrai" matériel.</p>
<p>Tu veux plus de puissance informatique dans un projet électronique ? Envisage un <a href="https://www.arduino.cc/" target="_blank">Arduino</a> ou <a href="https://www.raspberrypi.org/" target="_blank">Raspberry Pi</a>.
</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-headphones"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Wearables</h4>
<p>Pimp je schoenen met LED's, 3D-print een zomerjurk, hang je T-shirt vol spionagegadgets...
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Wearables</h4>
<p>Tune your shoes with LEDs, 3D-print a summer dress, upgrade your T-shirt with spy gadgets...</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Ordinateurs vestimentaires</h4>
<p>Tune tes chaussures avec des LED, imprime une jupe d'été en 3D, accroche des gadgets d'espionnage à ton T-shirt...</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-reddit-alien"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Robots</h4>
<p>Zelfs <a href="https://www.youtube.com/watch?v=46ivFpsmEVQ" target="_blank">crappy robots</a> kunnen cool zijn! Ga
aan de slag met huis-, tuin- en keukenmateriaal om je eigen robot te bouwen. Keep it safe!</p>
<p>Of gebruik bestaande robot-kits zoals
<a href="https://meetedison.com/" target="_blank">Edison</a>,
<a href="https://www.makeblock.cc/mbot/" target="_blank">mBot</a>,
<a href="https://www.lego.com/nl-be/mindstorms/?domainredir=mindstorms.lego.com" target="_blank">Lego Mindstorms</a>,
<a href="https://www.dwengo.org/" target="_blank">Dwengo</a>,
<a href="https://www.meccano.com/meccanoid-about" target="_blank">Meccanoid</a>, ...
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Robots</h4>
<p>Even <a href="https://www.youtube.com/watch?v=46ivFpsmEVQ" target="_blank">crappy robots</a> can be cool! Use every day items to build your own robots! Keep it safe!</p>
<p>Or use existing kits like
<a href="https://meetedison.com/" target="_blank">Edison</a>,
<a href="https://www.makeblock.cc/mbot/" target="_blank">mBot</a>,
<a href="https://www.lego.com/nl-be/mindstorms/?domainredir=mindstorms.lego.com" target="_blank">Lego Mindstorms</a>,
<a href="https://www.dwengo.org/" target="_blank">Dwengo</a>,
<a href="https://www.meccano.com/meccanoid-about" target="_blank">Meccanoid</a>, ...
</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Robots</h4>
<p>Même les <a href="https://www.youtube.com/watch?v=46ivFpsmEVQ" target="_blank">crappy robots</a> peuvent avoir l'air cool! Utilise du matériel de la maison, du jardin ou de la cuisine pour construire ton propre robot! Keep it safe!</p>
<p>Ou utilise des kits robots existants comme
<a href="https://meetedison.com/" target="_blank">Edison</a>,
<a href="https://www.makeblock.cc/mbot/" target="_blank">mBot</a>,
<a href="https://www.lego.com/nl-be/mindstorms/?domainredir=mindstorms.lego.com" target="_blank">Lego Mindstorms</a>,
<a href="https://www.dwengo.org/" target="_blank">Dwengo</a>,
<a href="https://www.meccano.com/meccanoid-about" target="_blank">Meccanoid</a>, etc.
</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-gamepad"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Spelletjes</h4>
<p>
<a href="https://scratch.mit.edu" target="_blank">Scratch</a>,
<a href="https://unity3d.com" target="_blank">Unity</a>,
<a href="https://www.yoyogames.com/get" target="_blank">Game Maker</a>, ... Allemaal bijzonder geschikt om leuke
spelletjes mee te maken!
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Games</h4>
<a href="https://scratch.mit.edu" target="_blank">Scratch</a>,
<a href="https://unity3d.com" target="_blank">Unity</a>,
<a href="https://www.yoyogames.com/get" target="_blank">Game Maker</a>, ... all perfect tools for creating your own fun and interactive game.
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Games</h4>
<a href="https://scratch.mit.edu" target="_blank">Scratch</a>,
<a href="https://unity3d.com" target="_blank">Unity</a>,
<a href="https://www.yoyogames.com/get" target="_blank">Game Maker</a>, ... Tous conviennent pour créer de chouettes jeux.
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-globe"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Websites</h4>
<p>
Amuseer je met het bouwen van een leuke website.
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Websites</h4>
<p>Have fun making your own website.</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Websites</h4>
<p>Amuse-toi à créer un site Web sympa.</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-bug"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Plezante software</h4>
<p>Nog nooit geprogrammeerd? Doorloop eerst wat opdrachten op <a href="https://code.org/learn" target="_blank">code.org</a>.
Zo ontdek je meteen of problemen oplossen en dingen bouwen met pure logica iets voor jou is.
</p>
<p>Vind je net als ons blokjes kei-cool? Dan is <a href="https://scratch.mit.edu" target="_blank">Scratch</a> helemaal
voor jou! Op <a href="https://lier.coderdojobelgium.be/wat-doen-we/scratch" target="_blank">deze site</a> vind je
een hoop leermateriaal. Of laat je inspireren door projecten van andere scratchers, zoals <a href="https://scratch.mit.edu/users/chrisg/projects/"
target="_blank">chrisg</a>,
<a href="https://scratch.mit.edu/users/PinkyPepper/projects/" target="_blank">PinkyPepper</a> of de vele anderen
die projecten delen op de scratch website.</p>
<p>Je bent nooit te jong om iets leuks te verzinnen! Met <a href="https://www.scratchjr.org/" target="_blank">ScratchJr</a> kunnen de jongsten op de tablet aan de slag.</p>
<p>Met <a href="https://appinventor.mit.edu/explore/" target="_blank">App Inventor</a> kan je echte Android apps maken.
Zeg nu nog eens dat blokjes niet plezant zijn ;-)</p>
<p>Ben je eerder een typ-fanaat? Dan vind je vast <a href="https://www.python.org/" target="_blank">Python</a>,
<a href="https://lier.coderdojobelgium.be/wat-doen-we/javascript" target="_blank">JavaScript</a> of een van de andere
ontelbare programmeertalen bijzonder leuk. Waar te beginnen? Op <a href="https://www.codecademy.com/" target="_blank">codecademy</a> bijvoorbeeld.</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Fun software</h4>
<p>Never programmed? You can first go trough a few exercises <a href="https://code.org/learn" target="_blank">code.org</a>.
This way you'll quickly realise wheter solving problems using pure logic is something for you.
</p>
<p>Do you think, just like us, that blocks are super cool? Then <a href="https://scratch.mit.edu" target="_blank">Scratch</a> will be your thing!
<a href=https://lier.coderdojobelgium.be/wat-doen-we/scratch" target="_blank">On this website</a> you can find a lot of material to get you started. Or be inspired by other people like <a href="https://scratch.mit.edu/users/chrisg/projects/"
target="_blank">chrisg</a>,
<a href="https://scratch.mit.edu/users/PinkyPepper/projects/" target="_blank">PinkyPepper</a> or the many other people sharing their projects on the scratch website.</p>
<p>You are never too young! Using <a href="https://www.scratchjr.org/" target="_blank">ScratchJr</a> even the youngest can code.</p>
<p>Using <a href="https://appinventor.mit.edu/explore/" target="_blank">App Inventor</a> you can make real android apps.
Who said blocks can't be cool ;-)</p>
<p>More of a typist? <a href="https://www.python.org/" target="_blank">Python</a>,
<a href="https://lier.coderdojobelgium.be/wat-doen-we/javascript" target="_blank">JavaScript</a> or one of the many other languages will be something for you. Where to start? You can try <a href="https://www.codecademy.com/" target="_blank">codecademy</a>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Des logiciels amusants</h4>
<p>Tu n'as encore jamais programmé? Fais d’abord quelques exercices sur <a href="https://code.org/learn" target="_blank">code.org</a>.
Tu découvriras ainsi tout de suite si tu es fait pour résoudre des problèmes ou construire des trucs logiques.
</p>
<p>Tout comme nous, tu adores les blocs? Alors, <a href="https://scratch.mit.edu" target="_blank">Scratch</a> est fait pour toi!
Tu trouveras tout plein de matériel didactique <a href=https://lier.coderdojobelgium.be/wat-doen-we/scratch" target="_blank">sur ce site</a>. Tu peux aussi t’inspirer de projets d'autres scratchers comme <a href="https://scratch.mit.edu/users/chrisg/projects/"
target="_blank">chrisg</a>,
<a href="https://scratch.mit.edu/users/PinkyPepper/projects/" target="_blank">PinkyPepper</a> ou de nombreux autres qui partagent leurs projets sur le site Web de scratch.</p>
<p>Avec <a href="https://www.scratchjr.org/" target="_blank">ScratchJr</a> les plus jeunes peuvent se mettre au travail sur la tablette.</p>
<p>Using <a href="https://appinventor.mit.edu/explore/" target="_blank">App Inventor</a> te permet de développer des applis Android. Alors, tu trouves toujours que les blocs, c'est pas cool? ;-)</p>
<p>Tu préfères plutôt le clavier? Alors, tu apprécieras plus <a href="https://www.python.org/" target="_blank">Python</a>,
<a href="https://lier.coderdojobelgium.be/wat-doen-we/javascript" target="_blank">JavaScript</a> ou un des innombrables autres langages de programmation. Par où commencer? Sur <a href="https://www.codecademy.com/" target="_blank">codecademy</a> par exemple.
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-question-circle"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Of verras ons!</h4>
<p>Laat je creativiteit niet begrenzen door ons! Heb je zelf een tof technologie-idee? Een coole Minecraft game? Een
zelfrijdende fiets? Laat je volledig gaan!</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Or surprise us!</h4>
<p>Don't let us limit your creativity, and create your own tech-idea!</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Ou surprends-nous!</h4>
<p>Ne nous laisse pas brider ta créativité! Tu as une super idée technologique? Un jeu Minecraft trop sympa ? Un vélo qui roule tout seul? Vas-y, lâche-toi!</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="sponsors">
<div class="container">
<div class="section-header" lang="nl">
<h2 class="section-title text-center wow fadeInDown">Dankjewel</h2>
<p class="text-center wow fadeInDown">
<strong>Coolest Projects</strong> wordt georganiseerd door vrijwilligers van <a href="https://www.coderdojobelgium.be"
target="_blank">CoderDojo Belgium vzw</a>.
<br>Het doet ons enorm veel plezier te kunnen rekenen op een aantal sterke partners!
</p>
</div>
<div class="section-header" lang="en">
<h2 class="section-title text-center wow fadeInDown">Thanks</h2>
<p class="text-center wow fadeInDown">
<strong>Coolest Projects</strong> is organised by volunteers of <a href="https://www.coderdojobelgium.be"
target="_blank">CoderDojo Belgium vzw</a>.
<br>We are glad we can count on some strong partners!
</p>
</div>
<div class="section-header" lang="fr">
<h2 class="section-title text-center wow fadeInDown">MERCI</h2>
<p class="text-center wow fadeInDown">
<strong>Coolest Projects</strong> est organisé par des bénévoles de <a href="https://www.coderdojobelgium.be"
target="_blank">CoderDojo Belgium vzw</a>.
<br>Nous sommes heureux de pouvoir compter sur plusieurs partenaires de poids!
</p>
</div>
<div class="row">
<div class="col-sm-4 wow fadeInRight" lang="nl">
<h3 class="column-title"><i class="fa fa-thumbs-o-up"></i></h3>
<p><a href="https://www.technopolis.be/" target="_blank">Technopolis</a> zorgt voor logistieke steun</p>
<p class="text-center">
<a href="https://www.technopolis.be/" target="_blank"><img style="max-width:30em; max-height:30em;margin-left: -5em;margin-top: -5em;" class="sponsor" src="images/2018/Technopolis logo_quadri.png" /></a>
</p>
</div>
<div class="col-sm-4 wow fadeInRight" lang="en">
<h3 class="column-title"><i class="fa fa-thumbs-o-up"></i></h3>
<p><a href="https://www.technopolis.be/" target="_blank">Technopolis</a> give logistical support</p>
<p class="text-center">
<a href="https://www.technopolis.be/" target="_blank"><img style="max-width:30em; max-height:30em;margin-left: -5em;margin-top: -5em;" class="sponsor" class="sponsor" src="images/2018/Technopolis logo_quadri.png" /></a>
</p>
</div>
<div class="col-sm-4 wow fadeInRight" lang="fr">
<h3 class="column-title"><i class="fa fa-thumbs-o-up"></i></h3>
<p><a href="https://www.technopolis.be/" target="_blank">Technopolis</a> offrent un soutien logistique.</p>
<p class="text-center">
<a href="https://www.technopolis.be/" target="_blank"><img style="max-width:30em; max-height:30em;margin-left: -5em;margin-top: -5em;" class="sponsor" class="sponsor" src="images/2018/Technopolis logo_quadri.png" /></a>
</p>
</div>
<div class="col-sm-4 wow fadeInRight" lang="nl">
<h3 class="column-title"><i class="fa fa-eur"></i></h3>
<p>
Dankzij de financiële steun van <a href="https://telenet.be" target="_blank">Telenet</a> wordt het extra leuk voor deelnemers en bezoekers!
</p>
<p class="text-center">
<a href="https://telenet.be" target="_blank"><img class="sponsor" src="images/partners2017/telenet.png" /></a>
</p>
</div>
<div class="col-sm-4 wow fadeInRight" lang="en">
<h3 class="column-title"><i class="fa fa-eur"></i></h3>
<p>
Thanks to financial support of <a href="https://telenet.be" target="_blank">Telenet</a> we can provide a fun expericence for participants and visitors!
</p>
<p class="text-center">
<a href="https://telenet.be" target="_blank"><img class="sponsor" src="images/partners2017/telenet.png" /></a>
</p>
</div>
<div class="col-sm-4 wow fadeInRight" lang="fr">
<h3 class="column-title"><i class="fa fa-eur"></i></h3>
<p>
Le soutien financier de <a href="https://telenet.be" target="_blank">Telenet</a> a assuré une source de plaisir supplémentaire pour les participants et les visiteurs!
</p>
<p class="text-center">
<a href="https://telenet.be" target="_blank"><img class="sponsor" src="images/partners2017/telenet.png" /></a>
</p>
</div>
<div class="col-sm-4 wow fadeInRight">
<h3 class="column-title"> </h3>
<p lang="nl">
En met de steun van deze partners.
</p>
<p lang="fr">
Et avec le soutien de ces partenaires.
</p>
<p lang="en">
And with the support of these partners.
</p>
<p class="text-center">
<a href="http://www.ditisvlaanderen.be/nl/verbeelding-werkt-0" target="_blank"><img class="sponsor" src="images/partners2017/vlaanderen.png" /></a>
<a href="https://www.ewi-vlaanderen.be/en" target="_blank"><img class="sponsor" src="images/partners2017/ewi_sponsorlogo__1__360.jpg" /></a>
<a href="http://digitalbelgium.be/" target="_blank"><img class="sponsor" src="images/2018/Logo-DBSF.png" /></a>
</p>
</div>
</div>
</div>
</section>
<section id="awards">
<div class="container">
<div class="section-header" lang="nl">
<h2 class="section-title text-center wow fadeInDown">Awards</h2>
<p class="text-center wow fadeInDown">
We delen ook leuke awards uit voor projecten die binnen een bepaalde categorie uitblinken. Het beste project in elke categorie wint een prijs.
</p>
</div>
<div class="section-header" lang="en">
<h2 class="section-title text-center wow fadeInDown">Awards</h2>
<p class="text-center wow fadeInDown">
We also reward awards for projects that really shine within a certain category. The best project within every category gets a prize.
</p>
</div>
<div class="section-header" lang="fr">
<h2 class="section-title text-center wow fadeInDown">Récompenses</h2>
<p class="text-center wow fadeInDown">
Nous offrirons également des récompenses pour les projets qui auront réellement brillés dans des catégories. Le meilleur projet dans chaque catégorie gagnera un prix.
</p>
</div>
<div class="row">
<div class="col-sm-6 wow fadeInLeft">
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<!--<i class="fa fa-users"></i>-->
<i class="fa"><img class="award-image" alt="Scratch award" src="images/awards/scratch.png"/></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Scratch award</h4>
<p>Iedereen bij CoderDojo weet dat je met Scratch super coole dingen kan maken. Dus is een Scratchprijs helemaal op zijn plaats bij Coolest Projects. Maak jij leuke spelletjes, handige programmatjes of grappige filmpjes in Scratch? Dan maak je kans op deze prijs!</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Scratch award</h4>
<p>Everyone at CoderDojo knows that you can make super cool stuff with Scratch. That is why we have a Scratch prize at Coolest Projects. Are you good at making fun games, handy programs or exciting movies in Scratch? Then this is your prize!</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Scratch award</h4>
<p>Tout le monde sait que vous pouvez faire des choses super cool sur Scratch. C'est pourquoi nous avons un prix Scratch chez Coolest Projects. Êtes-vous un crack à développer des jeux amusants, des programmes pratiques ou des histoires excitantes sur Scratch? Ce prix est à vous !</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-lightbulb-o"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Most creative</h4>
<p>Voor projecten die iets creatief hebben aangepakt!
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Most creative</h4>
<p>For projects that did something truly creative!
</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Le plus créatif</h4>
<p>Pour les projets vraiment créatifs!
</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-star-o"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Most original</h4>
<p>Voor projecten die iets echt origineel hebben gedaan!
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Most original</h4>
<p>For projects that did something original!</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Le plus original</h4>
<p>Pour les projets originaux!</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-cog"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Most technical</h4>
<p>Laat zien dat technisch ook cool is en je wordt beloond!
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Most technical</h4>
<p>Show technology is cool and you will also be rewarded!</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Le plus technique</h4>
<p>Un projet qui montre que la technologie est cool, tu seras aussi récompensé!</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-users"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Most popular</h4>
<p>Bezoekers mogen stemmen en het project met de meeste stemmen wint.
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Most popular</h4>
<p>Visitors will be able to vote and the project with the most votes wins.</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Le plus populaire
</h4>
<p>Les visiteurs choisissent également un gagnant</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Coolest school</h4>
<p>Een school die cool is? Dat moet zeker beloond worden! Talrijk aanwezig? Gestructureerde inzet? Dan winnen jullie misschien deze prijs!
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Coolest school</h4>
<p>Schools that go the extra mile with regards to technology ought to be rewarded. Plentiful representation? Organized? This price might be yours!</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Coolest school</h4>
<p>Pour les écoles très technologiques.</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-link"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Most useful</h4>
<p>Heb je iets gebouwd dat meteen kan gebruikt worden? Dan hebben we ook voor jou een award!
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Most useful</h4>
<p>Made something that can be used already in the real world? Then we also got a category for you to shine in.</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Le plus utile</h4>
<p>Faire quelque chose qui peut être utilisé dans la vie réelle</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-fire-extinguisher"></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Coolest project</h4>
<p>Blaas ons van onze sokken met een kei cool project!
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Coolest project</h4>
<p>Make something super cool and impress us!</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Le plus cool</h4>
<p>Fais quelque chose de super cool et impressionne-nous!</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<!--<i class="fa fa-users"></i>-->
<i class="fa"><img class="award-image" alt="Future makers" src="images/awards/future-makers.png"/></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Future makers</h4>
<p>Ook begaan met de wereld? Laat dat zien in jouw project en misschien ben jij wel de future maker.
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Future makers</h4>
<p>Know you can make the world a better place? Show us trough your project and perhaps you will be the future maker</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Future makers</h4>
<p>Sais-tu que tu peux rendre le monde meilleur ? Montre-le nous à travers ton projet et peut-être que tu seras un futur créateur.</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<!-- <i class="fa fa-comment-o"></i> -->
<i class="fa"><img class="award-image" style="max-width:50px;height:auto;" alt="Telenet KickStart" src="images/awards/telenet-kickstart.png"/></i>
</div>
<div class="media-body" lang="nl">
<h4 class="media-heading">Most convincing pitch powered by Telenet Kickstart</h4>
<p>Speciaal voor de kids met een presentatie om ‘U’ tegen te zeggen, geeft Telenet graag de ‘most convincing pitch’ award. Doe ons versteld staan met jouw verhaal en wie weet sleep jij ‘m wel in de wacht.
</p>
</div>
<div class="media-body" lang="en">
<h4 class="media-heading">Most convincing pitch powered by Telenet Kickstart</h4>
<p>Telenet gladly hands out the ‘most convincing pitch’ award to the kid with the most outstanding presentation. Amaze us with your story and who knows, it might be yours.</p>
</div>
<div class="media-body" lang="fr">
<h4 class="media-heading">Most convincing pitch powered by Telenet Kickstart</h4>
<p>À tous les enfants : Telenet remettra le « most convincing pitch » award à celui qui aura la présentation la plus étonnante. Alors, surprends-nous avec ton histoire et, qui sait, tu remporteras peut-être ce prix fabuleux.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section id="jury">
<div class="container">
<div class="section-header">
<h2 class="section-title text-center wow fadeInDown">Jury</h2>
<p class="text-center wow fadeInDown">
</p>
</div>
<div class="row">
<div class="col-sm-6 wow fadeInLeft">
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-user"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Martine Tempels</h4>
<p>
President CoderDojo Belgium<br/>
Senior Vice President Telenet
</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-user"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Valerie Taerwe</h4>
<p>
Consultant AE<br/>
Young ICT Lady of the Year 2017
</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-user"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Ingrid Hoffman</h4>
<p>
General Manager at ADM<br/>
Professional networker for Business and ICT
</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-user"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Olivier Van Duüren</h4>
<p>
Founder The Dualarity<br/>
</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-user"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Jeroen De Vos</h4>
<p><a href="https://www.youtube.com/channel/UCeOMPoacHmvnz48AfQ4ZnLQ">Code teacher</a><br/>
Coach Coderdojo Belgium
</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-user"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Nele Van Beveren</h4>
<p>Agility Coach KBC<br/>
Finalist Young ICT Lady of the Year 2017<br/>
Coach CoderDojo Belgium
</p>
</div>
</div>
<div class="media service-box wow fadeInRight">
<div class="pull-left">
<i class="fa fa-user"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Laura Monten</h4>
<p>Business Process Engineer Colruyt Group<br/>