-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1176 lines (1081 loc) · 62.9 KB
/
index.html
File metadata and controls
executable file
·1176 lines (1081 loc) · 62.9 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
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="en">
<head>
<meta charset="utf-8">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<title>Hack Cyprus 2020 - Hack The Crisis</title>
<meta name="description"
content="Use technology to build innovative solutions and bring relief to the community, caused by COVID-19. Strictly Hack From Home.">
<meta name="keywords" content="Hackathon Cyprus hackcyprus hack cyprus cel cypriot enterprise link projectcel">
<meta name="author" content="Cypriot Enterprise Link">
<meta property="og:type" content="event">
<meta property="og:url" content="https://hackthecrisis.hackcyprus.com">
<meta property="og:title" content="Hack Cyprus 2020 - Hack The Crisis">
<meta property="og:image" content="https://hackthecrisis.hackcyprus.com/assets/img/fb-cover.jpg">
<meta property="og:description"
content="Use technology to build innovative solutions and bring relief to the community, caused by COVID-19. Strictly Hack From Home.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@hackcyprus">
<meta name="twitter:creator" content="@hackcyprus">
<meta name="twitter:title" content="Hack Cyprus 2020 - Hack The Crisis">
<meta name="twitter:image" content="https://hackthecrisis.hackcyprus.com/assets/img/fb-cover.jpg">
<meta name="twitter:description"
content="Use technology to build innovative solutions and bring relief to the community, caused by COVID-19. Strictly Hack From Home.">
<link rel="apple-touch-icon" sizes="57x57" href="assets/img/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/img/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/img/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/img/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/img/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicons/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="assets/img/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="assets/img/favicons/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="assets/img/favicons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="assets/img/favicons/favicon-16x16.png" sizes="16x16">
<!--<link rel="manifest" href="assets/img/favicons/manifest.json">-->
<link rel="mask-icon" href="assets/img/favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="assets/img/favicons/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" type="text/css" href="assets/css/custom-animations.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/style.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/mobile.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/custom.css"/>
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
<script>
var host = "hackthecrisis.hackcyprus.com"
if (window.location.host == host && window.location.protocol != "https:") {
window.location.protocol = "https:"
}
</script>
</head>
<body>
<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', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-44999116-32', 'auto');
ga('send', 'pageview');
</script>
<div class="preloader-mask">
<div class="preloader"></div>
</div>
<header class="header header-transparent">
<div class="header-wrapper">
<div class="container">
<div class="row">
<div class="col-md-2 col-sm-3 col-xs-12 navigation-header hidden-md">
<button class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navigation"
aria-expanded="false" aria-controls="navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
-
<div class=" col-md-10 col-sm-10 col-xs-12 navigation-container">
<div id="navigation" class="navbar-collapse collapse">
<ul class="navigation-list pull-left light-text">
<li class="navigation-item extra-padding-left"><a href="#about2" class="navigation-link">About</a>
</li>
<li class="navigation-item"><a href="#themes" class="navigation-link">Themes</a></li>
<li class="navigation-item"><a href="#schedule" class="navigation-link">Schedule</a></li>
<li class="navigation-item"><a href="#rules" class="navigation-link">The Rules</a></li>
<li class="navigation-item"><a href="#faq" class="navigation-link">FAQs</a></li>
<li class="navigation-item"><a href="#sponsors" class="navigation-link">Our Supporters</a>
</li>
</ul>
<a href="assets/HackTheCrisisPrototypes .pdf"
target="_blank" class="pull-right buy-btn">Final Projects</a>
</div>
</div>
</div>
</div>
</div>
</header>
<section id="hero" class="background-intro">
<div class=" align-center">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2 class="heading-alt custom-color" style="margin-top:13%;">
April 3-5
<span class="extra-margin-left extra-margin-right"> / </span>Hack From Home
</h2>
</div>
</div>
<div class="row extra-padding-top ">
<div class="col-sm-12">
<h1 class="custom-color letter-spacing font-70">
<strong>HACK THE CRISIS</strong>
</h1>
<h1 class="custom-color letter-spacing font-70">
<strong>(CY)</strong>
</h1>
</div>
</div>
<div class="row extra-padding-top extra-padding-bottom">
<div class="col-sm-3 col-sm-offset-3 col-xs-12 extra-padding-top extra-padding-bottom">
<div class="extra-padding-top">
<a class="btn btn-md"
href="https://www.eventbrite.com/e/hackthecrisiscyprus-hackathon-tickets-101350391750"
target="_blank">
REGISTER NOW
</a>
</div>
</div>
<div class="col-sm-3 col-xs-12 extra-padding-top extra-padding-bottom">
<div class="extra-padding-top">
<a class="btn btn-md"
target="_blank"
href="https://join.slack.com/t/hackcyprus/shared_invite/zt-cxi047qr-03FIhpWNBRazoXocSXqasg">
JOIN SLACK
</a>
</div>
</div>
</div>
<div class="row top40">
<div class="col-md-2 col-md-offset-0 col-xs-6 col-xs-offset-3 col-sm-6 top25">
<a href="https://www.hackcyprus.com" title="Hack{cyprus}">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/logo/hackcyprus-white.png" alt="Hack{cyprus} logo"/>
<div class="hidden-md" style="margin-bottom:20px"></div>
</a>
</div>
<div class="col-md-3 top25 bottom25 hidden-sm">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/extra/whiteline-Right.png" alt="whiteline with right indicator"/>
</div>
<div class="col-md-2 col-md-offset-0 col-xs-6 col-xs-offset-3 col-sm-6">
<a href="https://hackthecrisis.hackcyprus.com" title="Hackthecrisis Cyprus">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/logo/hackthecrisiscyprus-logo.png" alt="Hackthecrisis Cyprus logo"/>
<div class="hidden-md" style="margin-bottom:20px"></div>
</a>
</div>
<div class="col-sm-3 top25 hidden-sm">
<a href="https://www.hackcyprus.com" title="Hack{cyprus}">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/extra/whiteline-left.png" alt="whiteline with left indicator"/>
</a>
</div>
<div class="col-md-2 col-xs-6 col-xs-offset-3 col-md-offset-0 col-sm-6 extra-padding-top">
<a href="http://www.rise.org.cy" title="RISE">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/logo/rise-logo.png" alt="RISE logo"/>
</a>
</div>
</div>
</div>
</div>
</section>
<section id="about2" style="padding-top:30px; padding-bottom:50px;">
<div class="container">
<div class="row ">
<div class="col-sm-6 text-right">
<br>
<h2 style="color:#002165">Let's join forces</h2>
<h4 style="color:#002165">and tackle the issues arising from this global crisis.</h4>
</div>
<div class="col-sm-6 text-left" style="border-left:4px solid #002165">
<p class="emphasis">Inspired by the Estonian example and many other countries around the globe that
followed suit, we invite
you to join <strong>#HackTheCrisisCyprus</strong> - a Digital Hackathon organised by Hack{cyprus}
and RISE, supported by multiple local organizations & businesses.
<p>
<p class="emphasis">
This is a call for action to participate and join forces to create innovative solutions for the
local
community. Join designers, developers, professionals and entrepreneurs in an effort focused on
elevating
ideas and creating space for innovators to come together in a time of global crisis.</p>
</div>
</div>
<div class="row counters-wrapper top25">
<h5 style="color:#002165" class="text-center">Organised by</h5>
<hr>
<div class="col-sm-6 text-center">
<img src="assets/img/hcs-dark.png" alt="Hack{cyprus} logo" style="max-width:350px; margin-top:15px">
</div>
<div class="col-sm-6 text-center">
<img src="assets/img/sponsors/rise-dark.png" alt="RISE logo" style="max-width:280px;">
</div>
</div>
<div class="row text-center" style="margin-top:20px;">
<h6>Under the auspices of</h6>
<img src="https://res.cloudinary.com/hackcyprus/image/upload/v1585565847/hackthecrisis/logo/digitalchampion.jpg" alt="Digital Champion logo" style="max-width:150px;"><br>
<img src="assets/img/sponsors/dmrid.jpg" alt="RISE logo" style="max-width:330px;">
</div>
</div>
</section>
<section id="themes" class=" align-center"style="background:#f9f6f6; padding-bottom:50px;">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h2>Themes</h2>
</div>
</div>
<div class="row counters-wrapper top25">
<div class="col-sm-3 extra-padding-bottom">
<i class="fa fa-heart fa-4x darkbg"></i>
<h4>Save<br>Lives</h4>
<p class="emphasis">Healthcare officials together with the government are working on better solutions to
respond
to the current problems caused by Covid-19. What could be done next to improve healthcare
infrastructure in Cyprus?
</p>
</div>
<div class="col-sm-3 extra-padding-bottom">
<i class="fa fa-users fa-4x darkbg"></i>
<h4>Save<br>Communities</h4>
<p class="emphasis">Communities are unable to come together the way they used to. Movement restrictions
and
social distancing are changing our daily lives and the ways in which we interact with each
other.
</p>
</div>
<div class="col-sm-3 extra-padding-bottom">
<i class="fa fa-briefcase fa-4x darkbg"></i>
<h4>Save<br>Businesses</h4>
<p class="emphasis">Businesses in Cyprus are already facing unprecedented challenges. Can we collaborate
across
the sectors and find new ways to save our local businesses?
</p>
</div>
<div class="col-sm-3 extra-padding-bottom">
<i class="fa fa-home fa-4x darkbg"></i>
<h4>Save Mental<br>Well-Being</h4>
<p class="emphasis">An issue that we don’t easily talk about but very important nevertheless. Loneliness
and
depression at any age is difficult to tackle.How do we reach out to people bound at home and
alone?
</p>
</div>
</div>
<h5><a href="assets/possible-ideas.pdf" target="_blank">Possible ideas <i class="fa fa-file-pdf-o"></i> </a></h5>
</div>
</section>
<section id="schedule" class="section align-center" style="background:#f9f6f6;">
<div class="container">
<div class="container">
<h2>Schedule</h2>
<div class="col-md-10 col-md-offset-1 top32">
<!-- Schedule start -->
<div class="row schedule schedule-light">
<!-- Navigation by day start -->
<div class="nav-wrapper">
<ul class="nav nav-schedule">
<li class="active"><a href="#schedule3_day0" data-toggle="tab">Before the event</a></li>
<li class=""><a href="#schedule3_day1" data-toggle="tab">Friday, April 03</a></li>
<li class=""><a href="#schedule3_day2" data-toggle="tab">Saturday, April 04</a></li>
<li class=""><a href="#schedule3_day3" data-toggle="tab">Sunday, April 05</a></li>
</ul>
</div>
<!-- Navigation by day end -->
<!-- First level content start -->
<div class="tab-content ">
<!-- Day 0 content start -->
<div id="schedule3_day0" class="tab-pane fade active in">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day0_timeline">
<div class="panel schedule-item">
<h6 class="title">Meet online on the <a href="https://hackcyprus.slack.com">hack
{cyprus} slack</a> and join the #hackthecrisisCyprus prep group to meet, exchange ideas
and form teams. </h6>
</div>
</div>
</div>
<!-- Day 1 content start -->
<div id="schedule3_day1" class="tab-pane fade">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day1_timeline">
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">19:00 - 20:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-users"></span></div>
<h6 class="title">Hackathon.liveStream(Hello, Themes, Sponsors, Procedure,
Rules);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">20:30 – 21:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-users"></span></div>
<h6 class="title">Hackathon.setup(Join Slack, Form teams, Connect with mentors on
slack);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">21:00 – 23:59</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.begin(begin hacking);</h6>
</a>
</div>
</div>
<!-- Accordion end -->
</div>
<!-- Day 1 content end -->
<!-- Day 2 content start -->
<div id="schedule3_day2" class="tab-pane fade">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day2_timeline">
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">00:00 - 10:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.continue(continue hacking);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">10:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.submit(Submit the ideas you are working on);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">10:00 - 12:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.continue(continue hacking, talk with mentors over
slack);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">12:00 - 19:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.liveStream(Hack o’ Clock time);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">19:00 - 20:30</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.continue(continue hacking, talk with mentors over
slack);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">20:30 - 23:59</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.continue(continue hacking);</h6>
</a>
</div>
</div>
<!-- Accordion end -->
</div>
<!-- Day 2 content end -->
<!-- Day 3 content start -->
<div id="schedule3_day3" class="tab-pane fade">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day3_timeline">
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">00:00 - 10:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.continue(continue hacking);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">10:00 - 16:00</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.continue(continue hacking, talk with mentors over
slack);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">16:00 - 17:30</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.submit(keyboards down, submit your project);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlight">17:30 - 18:30</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.liveStream(what we’ve build, thank you sponsors,
bye);</h6>
</a>
</div>
<div class="panel schedule-item">
<a class="schedule-item-toggle">
<strong class="time highlig ">18:30</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-code"></span></div>
<h6 class="title">Hackathon.party(party at home, stay safe);</h6>
</a>
</div>
</div>
<!-- Accordion end -->
</div>
<!-- Day 3 content end -->
</div>
<!-- First level content end -->
</div>
<!-- Schedule end -->
</div>
</div>
</section>
<section id="rules" class="disable-background section ">
<div class="container">
<div class="col-md-12 top32">
<h2 class="text-center">Rules</h2>
<div class="row">
<div class="col-md-6 top32">
<ul>
<li>
<h6 class="title">Team size <= 5 people - Yes, 1 person teams are allowed.</h6>
</li>
<li>
<h6 class="title">Bring your idea and any code you have from before.</h6>
</li>
<li>
<h6 class="title">Stay home and collaborate remotely with your teammates.</h6>
</li>
<li>
<h6 class="title">You can use any technology (hardware or software) along with any
programming language.</h6>
</li>
<li>
<h6 class="title">University students are welcome.</h6>
</li>
<li>
<h6 class="title">You will have full ownership & IP of whatever you build.</h6>
</li>
<li>
<h6 class="title">You can design, sketch and conceptualise and write code
beforehand.</h6>
</li>
</ul>
</div>
<div class="col-md-6 top32">
<ul>
<li>
<h6 class="title">Your project needs to tackle an issue related to the crisis caused by
the COVID-19 pandemic in Cyprus or worldwide</h6>
</li>
<li>
<h6 class="title">Unacceptable behavior as described in the <a
href="assets/code_of_conduct.pdf">code of conduct</a> will not be tolerated and
the person will be removed from all channels and social media related to the event
</h6>
</li>
<li>
<h6 class="title">
To submit your project, you must provide a short description of your idea, a GitHub repository link,
if possible access to your working demo and a 3 minute video that demonstrates your implemented idea (e.g.
<a href="https://www.youtube.com/watch?v=azep6YQy2Io">https://www.youtube.com/watch?v=azep6YQy2Io</a>).
</h6>
</li>
<li>
<h6 class="title">
The organisers, sponsors and supporters of the event will watch the videos and if they
believe that your project is tackling issues of public
health, community support, workforce, businesses and mental health efficiently will
contact you and will provide the necessary help and resources so that they can come
to life.
</h6>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="faq" class="section section align-center " style="background:#f9f6f6;">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h3><strong>FAQs</strong></h3>
</div>
<div class="col-sm-6 top32">
<div class="panel-group panel-group-alt" id="accordion">
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel1"
aria-expanded="false">What's a hackathon?</a>
<div id="panel1" class="panel-collapse collapse" style="height: 0px;">
<div class="panel-body">
<p>Hackathons are events where people compete to build interesting technical projects in
just over 40 hours. People come together, form teams, brainstorm, share ideas, and
help each other build awesome things. All skill levels are highly welcome, so don't
be intimidated if you don't feel your coding is up to scratch.</p>
</div>
</div>
</div>
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel2"
aria-expanded="false">What’s a virtual hackathon?</a>
<div id="panel2" class="panel-collapse collapse" style="height: 0px;">
<div class="panel-body">
<p>Same as hackathon but it happens online. Due to COVID-19 we all need to stay home but
online collaboration has never been a problem for the people in tech.</p>
</div>
</div>
</div>
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel3"
aria-expanded="false">Can I participate?</a>
<div id="panel3" class="panel-collapse collapse" style="height: 0px;">
<div class="panel-body">
<p>Everyone is welcome! As long as you are ready to bring your awesome idea to life and
follow our simple guidelines you are good to join!</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 top32">
<div class="panel-group panel-group-alt">
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel5"
aria-expanded="false">Do I need to have a team?</a>
<div id="panel5" class="panel-collapse collapse">
<div class="panel-body">
<p>You're welcome to make a team before the event, but people join without a team. At
the start of the event, we’ll help everyone find a team. One of the best things
about hackathons is meeting hackers from all over the country.</p>
</div>
</div>
</div>
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel6"
aria-expanded="false">Can I present an idea?</a>
<div id="panel6" class="panel-collapse collapse">
<div class="panel-body">
<p>The purpose of a hackathon is to use the 2 days of the hackathon to create a working
prototype. Ideas without a working prototype won’t be accepted.</p>
</div>
</div>
</div>
<div class="panel">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#panel7"
aria-expanded="false">Since we won’t be together how would I know what other teams are
doing?</a>
<div id="panel7" class="panel-collapse collapse">
<div class="panel-body">
<p>We will be keeping in touch with everyone and updating social media with the work all
the teams will be doing. You are also encouraged to regularly update through Slack
and social media so that the others know what you are working on. Finally, at the end
of the hackathon, we will publish all videos of the projects for the teams that will
give consent. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="team" class="section section align-center">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h3 class="bottom25"><strong>The team</strong></h3>
</div>
<div class="row">
<div class="col-sm-2 col-xs-6">
<img src="assets/img/team/andrea.jpg">
<br>
<h6>Andrea<br>Solomonidou</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/anthoula.jpg">
<br>
<h6>Anthoula<br>Fotsiou Psoma</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/andreas.jpg">
<br>
<h6>Andreas<br>Lefkatis</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/demetris.jpg">
<br>
<h6>Demetris<br>Antoniadis</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/elena.jpg">
<br>
<h6>Elena Georgiou<br>Strouthos</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/maria.jpg">
<br>
<h6>Maria<br>Ioannou</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/terzi.jpg">
<br>
<h6>Maria<br>Terzi</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/marios.jpg">
<br>
<h6>Marios<br>Constantinides</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/strouthos.jpg">
<br>
<h6>Michalis<br>Strouthos</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/mschinis.jpg">
<br>
<h6>Michael<br>Schinis</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/valentinosevr.jpg">
<br>
<h6>Valentinos<br>Evripidou</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/poupouxios.jpg">
<br>
<h6>Valentinos<br>Papasavvas</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/team/vilija.jpg">
<br>
<h6>Vilija<br>Gecaite</h6>
</div>
</div>
</div>
</div>
</section>
<section id="mentors" class="section section align-center" style="background:#f9f6f6;">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h3 class="bottom25"><strong>Mentors</strong></h3>
</div>
<div class="row">
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/mentors/demetris.jpg">
<h6>Demetris<br>Antoniades</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/v1585803649/hackthecrisis/mentors/dimitrish.jpg">
<h6>Demetris<br>Hadjisofokli</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="assets/img/mentors/emmanouil.jpg">
<br>
<h6>Emmanouil<br>Chaniotakis</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/v1585803650/hackthecrisis/mentors/elizabeth.jpg">
<br>
<h6>Elizabeth<br>Kassinis</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/mentors/eva.jpg">
<h6>Eva<br>Korae</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/v1585803650/hackthecrisis/mentors/hariton.jpg">
<br>
<h6>Hariton<br>Efstathiades</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="assets/img/mentors/mariosg.jpg">
<br>
<h6>Marios Giorgoudis </h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/v1585803650/hackthecrisis/mentors/monica.jpg">
<br>
<h6>Monica Ioannidou Polemitis </h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/mentors/moyseos.jpg">
<br>
<h6>Moyses<br>Moyseos</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/mentors/nicholas.jpg">
<br>
<h6>Nicholas<br>Loulloudes</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/v1585803649/hackthecrisis/mentors/stelios.jpg">
<br>
<h6>Stelios<br>Yiallouros</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="assets/img/mentors/steven.jpg">
<br>
<h6>Steven<br>Stavrinou</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/v1585803649/hackthecrisis/mentors/sotiris.jpg">
<br>
<h6>Sotiris<br>Themistocleous</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/mentors/valentinos.jpg">
<br>
<h6>Valentinos<br>Georgiades</h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/v1585803649/hackthecrisis/mentors/vassos.jpg">
<br>
<h6>Vasos<br>Vassiliou </h6>
</div>
<div class="col-sm-2 col-xs-6">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/v1585803649/hackthecrisis/mentors/yiorgos.jpg">
<br>
<h6>Yiorgos<br>Chrysanthou </h6>
</div>
</div>
</div>
<h5><a href="assets/mentors.pdf" target="_blank">Mentors Expertise <i class="fa fa-file-pdf-o"></i> </a></h5>
</div>
</section>
<section id="sponsors" class="section align-center line-separator">
<div class="container text-center">
<div class="row sponsors">
<h2>We 'll come out stronger. Together.</h2>
<div class="col-sm-12 extra-padding-top extra-padding-bottom">
<div class="row sponsors text-center">
<!--
<div class="col-sm-4 col-xs-12">
<h5>Partner</h5>
<hr>
<a href="https://www.gov.uk/world/organisations/british-high-commission-nicosia"
target="_blank">
<img src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/BHC.png" alt="British High Commission sponsor logo">
</a>
</div>
-->
<div class="col-sm-8 col-sm-offset-2 col-xs-12">
<div class="row">
<h5>Sponsors</h5>
<hr>
<div class="col-sm-3 col-xs-4">
<a href="https://bionic.com.cy/" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/bionic.png"
alt="BIONIC logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="http://www.blacklemon.tv/" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/bl.png"
alt="Black Lemon logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://eencyprus.org.cy/en/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/een.png"
alt="EEN">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://sms.to/" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/smsto.png"
alt="SMS.to logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://wolf.ooo/" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/wolf.png" alt="Wolf logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://workstreams.ai/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/workstreams.png" alt="Youth Makerspace logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://onek.org.cy/" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/onek.jpg" alt="Onek logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://onek.org.cy/en/home-page/programs-and-service/creative-activeness/makerspace/" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/youth.png" alt="Youth Makerspace logo">
</a>
</div>
</div>
<div class="row top32">
<h5>Communication Sponsors</h5>
<hr>
<div class="col-sm-3 col-xs-4">
<a href="https://digitaltree.com.cy/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/tree.png" alt="Disrupt Cyprus logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://disruptcyprus.com/" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/disrupt.png" alt="Disrupt Cyprus logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://www.giraffes.kitchen/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/giraffes.png" alt="Giraffes in the Kitchen sponsor logo">
</a>
</div>
</div>
<div class="row top32">
<h5>Angels</h5>
<hr>
<div class="col-sm-3 col-xs-4">
<a href="https://disruptcyprus.com/" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/disrupt.png" alt="Disrupt Cyprus logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://www.ergodotisi.com/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/ergodotisi.png" alt="Launchpad">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://www.gravity.ventures" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/gravity.jpg" alt="Launchpad">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="#" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/launchpad.jpg" alt="Launchpad">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://primetel.com.cy/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/primetel.jpg" alt="Launchpad">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="http://www.rise.org.cy/en-gb/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/rise-dark-s.png" alt="Rise logo">
</a>
</div>
</div>
<div class="row top32">
<h5>Community Supporters</h5>
<hr>
<div class="row">
<div class="col-sm-3 col-xs-4">
<a href="https://www.aretaeio.com/en/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/aretaeio.jpg" alt="aretaeio sponsor logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://www.gov.uk/world/organisations/british-high-commission-nicosia" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/BHC.png" alt="British High Commission sponsor logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://csicy.com/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/csi.png" alt="CSI">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://ccs.org.cy/" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/ccs.png"
alt="Black Lemon logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://www.cut.ac.cy/?languageId=1" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/cut.png" alt="Cut logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="http://www.cyprusseeds.com/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/seeds.png" alt="Cyprus Seeds logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://cyprusinno.com/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/inno.png" alt="Cyprus Inno logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://www.facebook.com/GDGCyprus/" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/gdg.png" alt="GDG Cyprus logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="http://gravity.ventures/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/gravity.jpg" alt="aretaeio sponsor logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://www.hellenicbank.com/" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/hellenic.jpeg"
alt="EEN">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://hugge.space" target="_blank">
<img class="align-middle-logo" src="assets/img/sponsors/huggespace.png" alt="Hugge Space logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="http://www.nicosia.org.cy/en-GB/home/" target="_blank">
<img class="align-middle-logo" src="https://res.cloudinary.com/hackcyprus/image/upload/f_auto,q_auto/v1585507910/hackthecrisis/sponsors/mon.png" alt="Municipality of Nicosia logo">
</a>
</div>
<div class="col-sm-3 col-xs-4">
<a href="https://www.ouc.ac.cy/index.php/el/" target="_blank">