forked from fossasia/gci17.fossasia.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1295 lines (1219 loc) · 39.1 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
---
---
<!-- Please don't remove these above 2 lines as they are riquired by jekyll -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>FOSSASIA | Google Code-In 2017</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css" media="all">
<link href="css/themify-icons.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/flexslider.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/stylesheet.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/theme-red.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/animate.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/hover.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/custom.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/contributors.css" rel="stylesheet" type="text/css" media="all" />
<link href='https://fonts.googleapis.com/css?family=Lato:300,400%7CRaleway:100,400,300,500,600,700%7COpen+Sans:400,500,600'
rel='stylesheet' type='text/css'>
</head>
<body class="scroll-assist">
<div class="nav-container" id="welcome">
<nav>
<div class="nav-bar">
<div class="module left">
<a href="index.html">
<img class="logo logo-dark" alt="FOSSASIA" src="img/fossasia-dark.png">
</a>
</div>
<div class="module widget-handle mobile-toggle right visible-sm visible-xs">
<i class="ti-menu"></i>
</div>
<div class="module-group right">
<div class="module left">
<ul class="menu">
<li>
<a href="#welcome">Welcome</a>
</li>
<li>
<a href="#mentors">Mentors</a>
</li>
<li>
<a href="#students">Student</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#map-sec">Map</a>
</li>
<li>
<a href="#student-blog">Blog Posts</a>
</li>
<li>
<a href="#social-links">Social Links</a>
</li>
<li>
<a href="https://codein.withgoogle.com/organizations/fossasia/">Google Code-In</a>
</li>
<li class="has-dropdown">
<a href="#">
Quick Links
</a>
<ul>
<li>
<a href="#">
Main Site
</a>
</li>
<li>
<a href="#">
Blog
</a>
</li>
<li>
<a href="#">
Events
</a>
</li>
<li>
<a href="https://gci16.fossasia.org">
Google Code-In 2016
</a>
</li>
<li>
<a href="https://gci15.fossasia.org">
Google Code-In 2015
</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="module widget-handle language left">
<ul class="menu">
<li class="has-dropdown">
<a href="#">ENG</a>
<ul>
<li>
<a href="#">French</a>
</li>
<li>
<a href="#">Deutsch</a>
</li>
<li>
<a href="#">Polski</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</nav>
</div>
<div class="main-container">
<section class="image-slider slider-all-controls controls-inside pt0 pb0 height-70 parallax">
<ul class="slides">
<li class="overlay image-bg">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/slider/community-map.jpg">
</div>
<div class="container v-align-transform">
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<h2 class="mb-xs-16">Educating and inspiring students by being
<br class="hidden-sm"> involved in open source projects</h2>
<p class="lead mb40">
Participate in Google Codein with
<b>FOSSASIA</b> !
</p>
<a class="btn btn-lg btn-filled" href="https://codein.withgoogle.com/organizations/fossasia/">Take me Along !</a>
<a class="btn btn-lg" href="#mentors">Explore the site</a>
</div>
</div>
</div>
</li>
<li class="overlay image-bg">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/slider/group-photo.jpg">
</div>
<div class="container v-align-transform ">
<div class="row text-center">
<div class="col-md-10 col-md-offset-1">
<h2 class="mb-xs-16">
<b>
<i>"The Open Conversational Web"</i>
</b>
<br class="hidden-sm">Asia's Premier Open Technology Event</h2>
<p class="lead mb40">
FOSSASIA SUMMIT IN SINGAPORE
<br> 22
<sup>th</sup> - 25
<sup>th</sup> March, 2018
</p>
<a class="btn btn-lg btn-filled" href="https://2018.fossasia.org/">I'm Interested !</a>
</div>
</div>
</div>
</li>
</ul>
</section>
<section class="bg-secondary" id="mentors">
<div class="container">
<div class="row ">
<div class="col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1 text-center ">
<h2 class="animated fadeIn">Mentors for you</h2>
</div>
</div>
<div class="row mb64 mb-xs-24">
<div class="col-sm-12 text-center spread-children-large">
{% for mentor in site.data.mentors %}
<div class="card">
<img src="img/mentors/{{ mentor.image }}" alt="{{ mentor.name }}" class="display-picture">
<br>
<p class="person-name">{{ mentor.name }}</p>
<br>
<ul class="list-inline social-list">
{% if mentor.github %}
<a href="https://github.com/{{ mentor.github }}" class="icon-a">
<i class="ti-github icon-i"></i>
</a>
{% endif %}
{% if mentor.github %}
<a href="https://twitter.com/{{ mentor.twitter }}" class="icon-a">
<i class="ti-twitter-alt icon-i"></i>
</a>
{% endif %}
{% if mentor.github %}
<a href="https://{{ mentor.blog }}" class="icon-a">
<i class="ti-rss-alt icon-i"></i>
</a>
{% endif %}
{% if mentor.github %}
<a href="https://facebook.com/{{ mentor.facebook }}" class="icon-a">
<i class="ti-facebook icon-i"></i>
</a>
{% endif %}
</ul>
</div>
{% endfor %}
</div>
</div>
</div>
</section>
<!--contributors section-->
<section>
<center>
<h2>
Contributors
</h2>
</center>
<div class="col-md-8 col-md-push-2">
<div class="container">
<div class="row">
<p>
Follow contributors on social, simpally click their profile names...
</p>
</div>
</div>
<div class="members contributers" id="Contributors">
<h1 class="section-h1">
</div>
</div>
</section>
<!--End of contributors section-->
<!--Student section-->
<section class="bg-secondary" id="students">
<div class="container">
<div class="row">
</div>
<div class="col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1 text-center">
<h2 id="student_title" class="animated fadeIn">Students just like you</h2>
</div>
<div class="row mb64 mb-xs-24">
<div class="col-sm-12 text-center spread-children-large">
{% for student in site.data.students %}
<div class="card">
<img src="img/students/{{ student.image }}" alt="{{ student.name }}" class="display-picture">
<br>
<p class="person-name">{{ student.name }}</p>
<br>
<ul class="list-inline social-list">
{% if student.github %}
<a href="https://github.com/{{ student.github }}" class="icon-a">
<i class="ti-github icon-i"></i>
</a>
{% endif %}
{% if student.twitter %}
<a href="https://twitter.com/{{ student.twitter }}" class="icon-a">
<i class="ti-twitter-alt icon-i"></i>
</a>
{% endif %}
{% if student.facebook %}
<a href="https://facebook.com/{{ student.facebook }}" class="icon-a">
<i class="ti-facebook icon-i"></i>
</a>
{% endif %}
</ul>
</div>
{% endfor %}
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1 text-center">
<p class="mb40 mb-xs-24">
Foundry is a remarkably complete template offering you a plethora of handcrafted design elements. Whether promoting a product,
service or portfolio - Foundry's unique and flexible style has you covered.
</p>
<a class="mb0 btn btn-lg btn-filled" href="#purchase-template">Meet</a>
</div>
</div>
</div>
</section>
<!--End of student section-->
<section>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h4 class="uppercase mb16 animated fadeIn">Student Projects</h4>
<p class="lead mb64">Some projects developed by students during GCI</p>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="lightbox-grid square-thumbs">
<ul id="project_holder">
{% for project in site.data.student_projects %}
<li class="student_project">
<a href="https://github.com/{{ project.github }}">
<div class="background-image-holder fadeIn" style="background: url("img/projects/{{ project.image }}");">
<img title="{{ project.name }} by {{ project.author }}" class="background-image" src="img/projects/{{ project.image }}" style="display: none;">
</div>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="bg-dark">
<div class="container">
<div class="col-md-10 col-md-offset-1 col-sm-7 col-sm-offset-1 v-align-transform text-center">
<h2 class="align-middle txt-rotate" data-period="1000" data-rotate='[ "Thank You For Contributing.", "योगदान करने के लिए धन्यवाद.", "Danke für den Beitrag.","ਯੋਗਦਾਨ ਪਾਉਣ ਲਈ ਤੁਹਾਡਾ ਧੰਨਵਾਦ", "貢献していただきありがとうございます.", "பங்களித்ததற்கு நன்றி" , "Dziękujemy za Twój wkład.", "സംഭാവനയ്ക്ക് നന്ദി", "მადლობა წვლილის შეტანისათვის", "Дякую за внесок!"]'>
</h2>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h4 class="uppercase mb16">Lightbox Grid Gallery</h4>
<p class="lead mb64">
A simple lightbox grid with square thumbnails.
</p>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="lightbox-grid square-thumbs" data-gallery-title="Gallery">
<ul>
<li>
<a href="img/cover1.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/cover1.jpg">
</div>
</a>
</li>
<li>
<a href="img/home12.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/home12.jpg">
</div>
</a>
</li>
<li>
<a href="img/home14.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/home14.jpg">
</div>
</a>
</li>
<li>
<a href="img/home17.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/home17.jpg">
</div>
</a>
</li>
<li>
<a href="img/cover5.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/cover5.jpg">
</div>
</a>
</li>
<li>
<a href="img/cover6.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/cover6.jpg">
</div>
</a>
</li>
<li>
<a href="img/cover7.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/cover7.jpg">
</div>
</a>
</li>
<li>
<a href="img/cover8.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/cover8.jpg">
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1 text-center">
<p class="mb40 mb-xs-24">
Foundry is a remarkably complete template offering you a plethora of handcrafted design elements. Whether promoting a product,
service or portfolio - Foundry's unique and flexible style has you covered.
</p>
<a class="mb0 btn btn-lg btn-filled" href="#purchase-template">Meet</a>
</div>
</div>
</div>
</section>
<section id="projects">
</section>
<section class="bg-secondary">
<div class="container" id="map-sec">
<div class="row">
<div class="col-sm-12 text-center">
<h4 class="uppercase mb16">Community Connect</h4>
</div>
<div id="map"></div>
</div>
</div>
</section>
<section class="image-edge">
<div class="col-md-6 col-sm-4 p0">
<img alt="Screenshot" class="mb-xs-24" src="img/phone1.png">
</div>
<div class="container">
<div class="col-md-5 col-md-offset-1 col-sm-7 col-sm-offset-1 v-align-transform right">
<h1 class="large mb40 mb-xs-16">Clean, Usable Image Blocks.</h1>
<h6 class="uppercase mb16">Left & Right Variations Included</h6>
<p class="lead mb40">
We've built three distinct image and text combinations for you to showcase the features of your product or service. All combos
come in left and right arrangements.
</p>
<a class="btn-lg btn" href="#">Explore Foundry</a>
</div>
</div>
</section>
<section class="image-edge">
<div class="col-md-6 col-sm-4 p0 col-md-push-6 col-sm-push-8">
<img alt="Screenshot" class="mb-xs-24" src="img/phone2.png">
</div>
<div class="container">
<div class="col-md-5 col-md-pull-0 col-sm-7 col-sm-pull-4 v-align-transform">
<h1 class="large mb40 mb-xs-16">Sleek, Smart and Modern.</h1>
<h6 class="uppercase mb16">A timeless design to be proud of</h6>
<p class="lead mb40">
We've built three distinct image and text combinations for you to showcase the features of your product or service. All combos
come in left and right arrangements.
</p>
<a class="btn-lg btn" href="#">Explore Foundry</a>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-sm-4">
<h2 class="number">2008</h2>
<p>
At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
quos dolores et quas molestias excepturi sint occaecati cupiditate non provident.
</p>
</div>
<div class="col-sm-4">
<h2 class="number">150+</h2>
<p>
At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
quos dolores et quas molestias excepturi sint occaecati cupiditate non provident.
</p>
</div>
<div class="col-sm-4">
<h2>Millions</h2>
<p>
At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
quos dolores et quas molestias excepturi sint occaecati cupiditate non provident.
</p>
</div>
</div>
</div>
</section>
<section class="cover fullscreen image-bg overlay parallax">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/prop1.jpg">
</div>
<div class="container v-align-transform">
<div class="row">
<div class="col-sm-12 text-center">
<h1 class="large uppercase mb16">53 Hopetoun Rd.</h1>
<h5 class="uppercase mb0">Contemporary Living In The Heart Of Toorak</h5>
</div>
</div>
</div>
<div class="align-bottom relative-xs text-center">
<a class="btn btn-filled btn-lg mb32 mt-xs-40" href="#">Register Interest</a>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-push-3 text-center">
<div class="image-slider slider-paging-controls controls-outside">
<ul class="slides">
<li class="mb32">
<img alt="App" src="img/app5.png">
</li>
<li class="mb32">
<img alt="App" src="img/app5.png">
</li>
<li class="mb32">
<img alt="App" src="img/app5.png">
</li>
</ul>
</div>
</div>
<div class="col-md-3 col-md-pull-6">
<div class="mt80 mt-xs-80 text-right text-left-xs">
<h5 class="uppercase bold mb16">Never forget again</h5>
<p class="fade-1-4">
The reminder that just keeps reminding! Scramble to your watch to silence these intrusive notifications.
</p>
</div>
<div class="mt80 mt-xs-0 text-right text-left-xs">
<h5 class="uppercase bold mb16">Stay active, be healthy</h5>
<p class="fade-1-4">
No more personal responsibility! You'll now be constantly reminded to stand up and move around.
</p>
</div>
</div>
<div class="col-md-3">
<div class="mt80 mt-xs-0">
<h5 class="uppercase bold mb16">Powered by you</h5>
<p class="fade-1-4">
Forget empty branding promises, this thing is powered by awesome (you), and we stand by that.
</p>
</div>
<div class="mt80 mt-xs-0">
<h5 class="uppercase bold mb16">Leave your phone</h5>
<p class="fade-1-4">
And you wont be able to use the app! Make sure you have the phone within close proximity at all times!
</p>
</div>
</div>
</div>
</div>
</section>
<section class="bg-secondary" id="student-blog">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h4 class="uppercase mb16">Blog</h4>
<p class="lead mb64">
Articles from the Contributors. </p>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-6">
<a href="https://naveenrocker.wordpress.com/2017/12/01/first-time-in-google-code-in-with-fossasia/" target="_blank">
<div class="image-tile outer-title text-center">
<img alt="Pic" src="img/blog/1.jpg" height="240" width="240">
<div class="title mb16">
<h5 class="uppercase mb0">First Time in Google Code In with Fossasia</h5>
<span>Naveen Rajan</span>
</div>
</div>
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://blog.kubacoding.eu/web-development/dive-into-open-source-with-fossasia-during-google-code-in/" target="_blank">
<div class="image-tile outer-title text-center">
<img alt="Latop with GitHub pendrive" src="img/blog/2.jpg" height="240" width="240">
<div class="title mb16">
<h5 class="uppercase mb0">My dive into open source with FOSSASIA during Google Code-in</h5>
<span>Kuba Michalski</span>
</div>
</div>
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="https://niteshkumarniranjan.wordpress.com/2017/12/03/my-journey-with-google-code-in-and-fossasia/" target="_blank">
<div class="image-tile outer-title text-center">
<img alt="Latop with GitHub pendrive" src="img/blog/3.jpg" height="240" width="240">
<div class="title mb16">
<h5 class="uppercase mb0">My Journey with Google Code-In and FOSSASIA.</h5>
<span>Nitesh Kumar Niranjan</span>
</div>
</div>
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="https://kartikeya23.wordpress.com/2017/12/06/one-task-two-tasks-three-tasks/" target="_blank">
<div class="image-tile outer-title text-center">
<img alt="An awesome guy's pic couldn't be loaded" src="img/blog/4.jpg" height="240" width="240">
<div class="title mb16">
<h5 class="uppercase mb0">One Task, Two Tasks, Three Tasks...</h5>
<span>Kartikeya Singh</span>
</div>
</div>
</a>
</div>
<div class="col-sm-12">
<div class="instafeed grid-gallery" data-user-name="mrareweb">
<ul></ul>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row v-align-children">
<div class="col-md-7 col-sm-6 text-center mb-xs-24">
<div class="embed-video-container embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://player.vimeo.com/video/120433187?badge=0&title=0&byline=0&title=0"
allowfullscreen="allowfullscreen"></iframe>
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-5 col-sm-offset-1">
<h3>Design that looks less 'theme' and more you.</h3>
<p>
Foundry offers you the modularity and ease-of-use of a template with the style and aesthetic of contemporary, bespoke web
design.
</p>
</div>
</div>
</div>
</section>
<section class="fullscreen image-bg parallax background-multiply">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/capital5.jpg">
</div>
<div class="container v-align-transform">
<div class="row">
<div class="col-sm-12">
<h1 class="thin mb0">FOSSASIA
<br>Based in Asia.</h1>
</div>
</div>
</div>
<div class="align-bottom text-center">
<a class="btn btn-white mb32" href="#">Pitch Us</a>
<ul class="list-inline social-list mb24">
<li>
<a href="#">
<i class="ti-twitter-alt"></i>
</a>
</li>
<li>
<a href="#">
<i class="ti-facebook"></i>
</a>
</li>
<li>
<a href="#">
<i class="ti-dribbble"></i>
</a>
</li>
<li>
<a href="#">
<i class="ti-vimeo-alt"></i>
</a>
</li>
</ul>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-sm-12">
<ul class="flickr-feed masonry masonryFlyIn" data-user-id="45240298@N08" data-album-id="72157665486359899"></ul>
</div>
</div>
</div>
</section>
<section class="bg-primary">
<div class="container">
<div class="row mb64 mb-xs-24">
<div class="col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1 text-center">
<h3 class="mb40 mb-xs-24">FOSSASIA Google Code-In 2016/17</h3>
<p class="lead">
Here are some videos from last year FOSSASIA Google Code-In!
</p>
</div>
</div>
<div class="widget video-container">
<iframe class="col-xs-12 col-sm-12 col-md-12 col-lg-10" src="https://www.youtube.com/embed/SLl--BrmAXs?list=PLzZVLecTsGpK544UhC1_Gm4sl4eW3lTEq"
frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
</div>
</div>
</section>
<section class="cover fullscreen image-slider slider-arrow-controls controls-inside parallax">
<ul class="slides">
<li class="overlay image-bg">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/resto1.jpg">
</div>
<div class="container v-align-transform">
<div class="row">
<div class="col-sm-12 text-center">
<img alt="Logo" class="image-small" src="img/fossasia-light.png">
</div>
</div>
</div>
<div class="align-bottom text-center">
<a class="btn btn-white mb32" href="#">Connect</a>
<ul class="list-inline social-list mb24">
<li>
<a href="#">
<i class="ti-twitter-alt"></i>
</a>
</li>
<li>
<a href="#">
<i class="ti-facebook"></i>
</a>
</li>
<li>
<a href="#">
<i class="ti-dribbble"></i>
</a>
</li>
<li>
<a href="#">
<i class="ti-vimeo-alt"></i>
</a>
</li>
</ul>
</div>
</li>
</ul>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="image-tile outer-title text-center">
<img alt="Pic" src="img/team-1.jpg">
<div class="title mb16">
<h5 class="uppercase mb0">Sally Marsh</h5>
<span>Creative Director</span>
</div>
<p class="mb0">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque
ipsa quae ab illo inventore veritatis.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="image-tile outer-title text-center">
<img alt="Pic" src="img/team-2.jpg">
<div class="title mb16">
<h5 class="uppercase mb0">Tim Foley</h5>
<span>iOS Developer</span>
</div>
<p class="mb0">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque
ipsa quae ab illo inventore veritatis.
</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="image-tile outer-title text-center">
<img alt="Pic" src="img/team-3.jpg">
<div class="title mb16">
<h5 class="uppercase mb0">Jake Robbins</h5>
<span>Brand Director</span>
</div>
<p class="mb0">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque
ipsa quae ab illo inventore veritatis.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="bg-primary">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-1 text-right text-left-xs col-sm-5">
<h1 class="uppercase mb24 bold italic">Fitness
<br>For Life</h1>
<h5 class="uppercase italic fade-1-4">“My passion is motivating
<br> people to get results”</h5>
<hr class="visible-xs">
</div>
<div class="col-md-5 col-sm-7">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</p>
<p>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque
ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem
quia voluptas sit aspernatur aut odit aut fugit.
</p>
<p>
Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi
tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem
ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit
qui in ea voluptate velit esse quam nihil molestiae consequatur
</p>
<img alt="signature" src="img/fitness1.png" class="image-small">
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h4 class="uppercase mb16">Lightbox Grid Gallery</h4>
<p class="lead mb64">
A simple lightbox grid with square thumbnails.
</p>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="lightbox-grid square-thumbs" data-gallery-title="Gallery">
<ul>
<li>
<a href="img/cover1.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/cover1.jpg">
</div>
</a>
</li>
<li>
<a href="img/home12.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/home12.jpg">
</div>
</a>
</li>
<li>
<a href="img/home14.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/home14.jpg">
</div>
</a>
</li>
<li>
<a href="img/home17.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/home17.jpg">
</div>
</a>
</li>
<li>
<a href="img/cover5.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/cover5.jpg">
</div>
</a>
</li>
<li>
<a href="img/cover6.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/cover6.jpg">
</div>
</a>
</li>
<li>
<a href="img/cover7.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/cover7.jpg">
</div>
</a>
</li>
<li>
<a href="img/cover8.jpg" data-lightbox="true">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/cover8.jpg">
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<footer class="footer-2 bg-dark" id="social-links">
<div class="container">
<div class="row">
<div class="col-sm-3 text-left">
<div class="vnu">
<img alt="Logo" class="footer-logo hvr-hang" src="img/fossasia-light.png">
</div>
</div>
<div class="col-sm-3 text-left"></div>
<div class="col-sm-6 text-right">
<ul class="list-inline social-list" style="font-size: 17px;padding: 10.5px;">
<li>
<a href="https://twitter.com/fossasia">
<i class="ti-twitter-alt hvr-hang"></i>
</a>
</li>
<li>
<a href="https://facebook.com/fossasia">
<i class="ti-facebook hvr-hang"></i>
</a>
</li>
<li>
<a href="https://plus.google.com/108920596016838318216">
<i class=" ti-google hvr-hang" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/groups/FOSSASIA-3762811">
<i class=" ti-linkedin hvr-hang" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://github.com/fossasia">
<i class=" ti-github hvr-hang" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://flickr.com/photos/fossasia">
<i class=" ti-flickr-alt hvr-hang" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCQprMsG-raCIMlBudm20iLQ">
<i class=" ti-youtube hvr-hang" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/fossasia">
<i class=" ti-instagram hvr-hang" aria-hidden="true"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<footer class="footer-1 bg-dark">
<div class="container">
<div class="row">