forked from PeraACES/PeraACES.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1027 lines (906 loc) · 45.2 KB
/
index.html
File metadata and controls
1027 lines (906 loc) · 45.2 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>
<!--[if lt IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<!-- meta charec set -->
<meta charset="utf-8">
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- Page Title -->
<title>ACES | Association of Computer Engineering Students</title>
<!-- Meta Description -->
<meta name="description" content="Association of Computer Engineering Students - official website">
<meta name="keywords" content="Engineering, Department of Computer, Department of Computer Engineering, Computer Engineering, Computer Engineer, University, University of Peradeniya, Faculty of Engineering, Students Society, Society, Association, Association of Students, Association of Engineering Students, Association of Computer Engineering Students">
<meta name="author" content="ACES">
<!-- Mobile Specific Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Font -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- CSS
================================================== -->
<!-- Fontawesome Icon font -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Twitter Bootstrap css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- jquery.fancybox -->
<link rel="stylesheet" href="css/jquery.fancybox.css">
<!-- animate -->
<link rel="stylesheet" href="css/animate.css">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css/main.css">
<!-- media-queries -->
<link rel="stylesheet" href="css/media-queries.css">
<!-- Modernizer Script for old Browsers -->
<script src="js/modernizr-2.6.2.min.js"></script>
</head>
<body id="body">
<!-- preloader -->
<div id="preloader">
<img src="img/preloader.png" alt="Preloader">
</div>
<!-- end preloader -->
<!--
Fixed Navigation
==================================== -->
<header id="navigation" class="navbar-fixed-top navbar">
<div class="container">
<div class="navbar-header">
<!-- responsive nav button -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<i class="fa fa-bars fa-2x"></i>
</button>
<!-- /responsive nav button -->
<!-- logo -->
<a class="navbar-brand" href="#body">
<h1 id="logo">
<img src="img/logo.png" alt="Brandi">
</h1>
</a>
<!-- /logo -->
</div>
<!-- main nav -->
<nav class="collapse navbar-collapse navbar-right" role="navigation">
<ul id="nav" class="nav navbar-nav">
<li class="current"><a href="#body">News</a></li>
<li><a href="#features">About</a></li>
<li><a href="#works">Events</a></li>
<li><a href="#team">Council</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- /main nav -->
</div>
</header>
<!--
End Fixed Navigation
==================================== -->
<!--
Home Slider
==================================== -->
<section id="slider" style="height:100vh">
<!-- <div class="gradient"></div> -->
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel" style="height:100vh">
<!-- Indicators bullet -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
<!--<li data-target="#carousel-example-generic" data-slide-to="4"></li>-->
</ol>
<!-- End Indicators bullet -->
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox" style="height:100vh">
<!-- single slide -->
<div class="item active" style="background-image: url(img/banner1.jpg);height:100vh;">
<div class="carousel-caption">
<h2 data-wow-duration="700ms" data-wow-delay="500ms" class="wow bounceInDown animated">ACES<span></span></h2>
<h3 data-wow-duration="1000ms" class="wow slideInLeft animated"><span class="color">Association of Computer Engineering Students</span></h3>
<p data-wow-duration="1000ms" class="wow slideInRight animated">- University of Peradeniya -</p>
<ul class="social-links text-center">
<!-- <li><a href=""><i class="fa fa-twitter fa-lg"></i></a></li> -->
<li><a href="https://www.facebook.com/acespera/" target="_blank"><i class="fa fa-facebook fa-lg"></i></a></li>
<li><a><i class="fa fa-google-plus fa-lg" target="_blank"></i></a></li>
<!-- <li><a href=""><i class="fa fa-linkedin fa-lg"></i></a></li> -->
</ul>
</div>
</div>
<!-- end single slide -->
<!-- single slide -->
<div class="item" style="background-image: url(img/banner2.jpg);height:100vh;">
<div class="carousel-caption" style="top:83%;text-align:left;left:0%;right:0%;background-color:rgba(0,0,0,0.5);padding:0px 0px 0px 10px;">
<!-- <h2 data-wow-duration="500ms" data-wow-delay="500ms" class="wow bounceInDown animated">Meet<span> Team</span>!</h2> -->
<h3 data-wow-duration="500ms" class="wow slideInLeft animated" style="margin-bottom: 5px;margin-left: 15px;"><a href="hackathon2018/index.html" target="_blank"><span class="color">Hackathon</span></a></h3>
<p data-wow-duration="500ms" class="wow slideInRight animated" style="margin-left: 15px;">ACES Hackathon</p>
</div>
</div>
<!-- end single slide -->
<!-- end single slide -->
<!-- single slide -->
<div class="item" style="background-image: url(img/banner3.jpg);height:100vh;">
<div class="carousel-caption" style="top:83%;text-align:left;left:0%;right:0%;background-color:rgba(0,0,0,0.5);padding:0px 0px 0px 10px;">
<!-- <h2 data-wow-duration="500ms" data-wow-delay="500ms" class="wow bounceInDown animated">Meet<span> Team</span>!</h2> -->
<h3 data-wow-duration="500ms" class="wow slideInLeft animated" style="margin-bottom: 5px;margin-left: 15px;"><a href="coders/" target="_blank"><span class="color">Coders</span></a></h3>
<p data-wow-duration="500ms" class="wow slideInRight animated" style="margin-left: 15px;">ACES Coders</p>
</div>
</div>
<!-- end single slide -->
<!-- single slide -->
<div class="item" style="background-image: url(img/banner4.jpg);height:100vh;">
<div class="carousel-caption" style="top:83%;text-align:left;left:0%;right:0%;background-color:rgba(0,0,0,0.5);padding:0px 0px 0px 10px;">
<!-- <h2 data-wow-duration="500ms" data-wow-delay="500ms" class="wow bounceInDown animated">Meet<span> Team</span>!</h2> -->
<h3 data-wow-duration="500ms" class="wow slideInLeft animated" style="margin-bottom: 5px;margin-left: 15px;"><a href="http://readme.lk/escape-15-symposium/" target="_blank"><span class="color">ESCaPe</span></a></h3>
<p data-wow-duration="500ms" class="wow slideInRight animated" style="margin-left: 15px;">ACES Project Symposium and Job Fair</p>
</div>
</div>
<!-- end single slide -->
<!-- single slide -->
<!--<div class="item" style="background-image: url(img/banner.jpg);height:100vh;">
<div class="carousel-caption" style="top:83%;text-align:left;left:0%;right:0%;background-color:rgba(0,0,0,0.5);padding:0px 0px 0px 10px;">
<h2 data-wow-duration="500ms" data-wow-delay="500ms" class="wow bounceInDown animated">Meet<span> Team</span>!</h2>
<h3 data-wow-duration="500ms" class="wow slideInLeft animated" style="margin-bottom: 5px;margin-left: 15px;><a href="https://www.facebook.com/media/set/?set=a.1617444818521081.1073741830.1608813369384226&type=3" target="_blank"><span class="color">IMMENSE</span></a></h3>
<p data-wow-duration="500ms" class="wow slideInRight animated" style="margin-left: 15px;">Annual Get Together</p>
</div>
</div> -->
</div>
<!-- End Wrapper for slides -->
</div>
</section>
<!--
End Home SliderEnd
==================================== -->
<!--
About
==================================== -->
<section id="features" class="features">
<div class="container">
<div class="row">
<div class="sec-title text-center mb50 wow bounceInDown animated" data-wow-duration="500ms">
<h2>About</h2>
<div class="devider"><i class="fa fa-institution fa-lg"></i></div>
</div>
<!-- service item -->
<div class="col-md-11 wow fadeInUp" data-wow-duration="500ms" data-wow-delay="500ms">
<div class="service-item">
<div class="service-desc text-justify">
<p>The Department of Computer Engineering was first established in the year 1985 in the Faculty of Engineering in University of Peradeniya as the oldest Computer Engineering Department in the University system of the country. The Computer Engineering stream was introduced as a separate discipline to the Faculty of Engineering in 2000. Since then, the Department of Computer Engineering has been targeting at producing fully qualified Computer Engineering undergraduates well equipped with knowledge, skills and attitudes required for the global industry, highly technical researches as well as for the field of academia. The department focuses on leveling up the competency levels of their undergraduates by providing them with deep insights about computational systems and related disciplines so that they would be able to build their own personal brand in the highly competitive field of Computer Engineering.</p>
<br>
<p>On par with Department’s vision which is “To be a competitive entity in teaching and research in Computer Engineering in the country and the region and to produce graduates with international recognition for their knowledge and skills, capable of taking leadership positions in the science and technology of design, construction, implementation, and maintenance of software and hardware components of modern computing systems and computer-controlled equipment that constitute the discipline of Computer Engineering”, The Association of Computer Engineering Students (ACES) was formed in August, 2001 as the students’ body of Computer Engineering undergraduates of the Faculty of Engineering with the aim of maximising students’ potential by organizing different activities and events that would bring out the best within themselves and make them prepared for the next technological revolution.</p>
</div>
</div>
</div>
<!-- end service item -->
</div>
</div>
</section>
<!--
End About
==================================== -->
<!--
Events
==================================== -->
<section id="works" class="features">
<div class="container">
<div class="row">
<div class="sec-title text-center mb50 wow bounceInDown animated" data-wow-duration="500ms">
<h2>Events</h2>
<div class="devider"><i class="fa fa-laptop fa-lg"></i></div>
</div>
<!-- service item -->
<div class="col-md-4 wow fadeInLeft" data-wow-duration="500ms">
<div class="service-item">
<!--
<div class="service-icon">
<i class="fa fa-github fa-2x"></i>
</div>
-->
<div class="service-desc">
<h3>Coders</h3>
<p style="text-align:justify">ACES Coders is a twelve hours coding competition which presents multiple problems to be solved using programming and mathematical knowledge. A number of institutions around the country take part in this event every year. It is a limited-time, rapid-coding competition which would improve the efficiency & accuracy of the participants.</p>
<br>
<p><a href="coders/" target="_blank" style="color:#6A737B">more <i class="fa fa-fighter-jet fa-sm"></i></a></p>
</div>
</div>
</div>
<!-- end service item -->
<!-- service item -->
<div class="col-md-4 wow fadeInUp" data-wow-duration="500ms" data-wow-delay="500ms">
<div class="service-item">
<!--
<div class="service-icon">
<i class="fa fa-pencil fa-2x"></i>
</div>
-->
<div class="service-desc">
<h3>Hackathon</h3>
<p style="text-align:justify">Aces Hackathon is one of the signature events that is organised annually by the Association of Computer Engineering Students. This event provides a platform for the competitors to come up with innovative ideas for a new product or to give a solution to a problem. This is one of the best opportunities the participants get to publicise their new ideas , to get an insight into the business world as well as to get an industrial exposure.</p>
<br>
<p><a href="hackathon2018/index.html" target="_blank" style="color:#6A737B">more <i class="fa fa-fighter-jet fa-sm"></i></a></p>
</div>
</div>
</div>
<!-- end service item -->
<!-- service item -->
<div class="col-md-4 wow fadeInRight" data-wow-duration="500ms" data-wow-delay="900ms">
<div class="service-item">
<!--
<div class="service-icon">
<i class="fa fa-bullhorn fa-2x"></i>
</div>
-->
<div class="service-desc">
<h3>Spark</h3>
<p style="text-align:justify">Inter School Quiz Competition is organized to provide experience and knowledge to the school community on computer engineering aspects. From 2015 it is named 'Spark', while taking this event to a new level.</p>
<br>
<p><a href="spark/" target="_blank" style="color:#6A737B">more <i class="fa fa-fighter-jet fa-sm"></i></a></p>
</div>
</div>
</div>
<!-- end service item -->
</div>
</div>
</section>
<!--
End Events
==================================== -->
<!--
Our Works
==================================== -->
<!-- <section id="works" class="works clearfix">
<div class="container">
<div class="row">
<div class="sec-sub-title text-center">
<p>These are some other events</p>
</div>
<div class="work-filter wow fadeInRight animated" data-wow-duration="500ms">
<ul class="text-center">
<li><a href="javascript:;" data-filter="all" class="active filter">All</a></li>
<li><a href="javascript:;" data-filter=".branding" class="filter">Branding</a></li>
<li><a href="javascript:;" data-filter=".web" class="filter">web</a></li>
<li><a href="javascript:;" data-filter=".logo-design" class="filter">logo design</a></li>
<li><a href="javascript:;" data-filter=".photography" class="filter">photography</a></li>
</ul>
</div>
</div>
</div>
<div class="project-wrapper">
<figure class="mix work-item branding">
<img src="img/works/item-1.jpg" alt="">
<figcaption class="overlay">
<a class="fancybox" rel="works" title="Write Your Image Caption Here" href="img/works/item-1.jpg"><i class="fa fa-eye fa-lg"></i></a>
<h4>Labore et dolore magnam</h4>
<p>Photography</p>
</figcaption>
</figure>
<figure class="mix work-item web">
<img src="img/works/item-2.jpg" alt="">
<figcaption class="overlay">
<a class="fancybox" rel="works" title="Write Your Image Caption Here" href="img/works/item-2.jpg"><i class="fa fa-eye fa-lg"></i></a>
<h4>Labore et dolore magnam</h4>
<p>Photography</p>
</figcaption>
</figure>
<figure class="mix work-item logo-design">
<img src="img/works/item-3.jpg" alt="">
<figcaption class="overlay">
<a class="fancybox" rel="works" title="Write Your Image Caption Here" href="img/works/item-3.jpg"><i class="fa fa-eye fa-lg"></i></a>
<h4>Labore et dolore magnam</h4>
<p>Photography</p>
</figcaption>
</figure>
<figure class="mix work-item photography">
<img src="img/works/item-4.jpg" alt="">
<figcaption class="overlay">
<a class="fancybox" rel="works" title="Write Your Image Caption Here" href="img/works/item-4.jpg"><i class="fa fa-eye fa-lg"></i></a>
<h4>Labore et dolore magnam</h4>
<p>Photography</p>
</figcaption>
</figure>
<figure class="mix work-item branding">
<img src="img/works/item-5.jpg" alt="">
<figcaption class="overlay">
<a class="fancybox" rel="works" title="Write Your Image Caption Here" href="img/works/item-5.jpg"><i class="fa fa-eye fa-lg"></i></a>
<h4>Labore et dolore magnam</h4>
<p>Photography</p>
</figcaption>
</figure>
<figure class="mix work-item web">
<img src="img/works/item-6.jpg" alt="">
<figcaption class="overlay">
<a class="fancybox" rel="works" title="Write Your Image Caption Here" href="img/works/item-6.jpg"><i class="fa fa-eye fa-lg"></i></a>
<h4>Labore et dolore magnam</h4>
<p>Photography</p>
</figcaption>
</figure>
<figure class="mix work-item logo-design">
<img src="img/works/item-7.jpg" alt="">
<figcaption class="overlay">
<a class="fancybox" rel="works" title="Write Your Image Caption Here" href="img/works/item-7.jpg"><i class="fa fa-eye fa-lg"></i></a>
<h4>Labore et dolore magnam</h4>
<p>Photography</p>
</figcaption>
</figure>
<figure class="mix work-item photography">
<img src="img/works/item-8.jpg" alt="">
<figcaption class="overlay">
<a class="fancybox" rel="works" title="Write Your Image Caption Here" href="img/works/item-8.jpg"><i class="fa fa-eye fa-lg"></i></a>
<h4>Labore et dolore magnam</h4>
<p>Photography</p>
</figcaption>
</figure>
</div>
</section> -->
<!--
End Our Works
==================================== -->
<!--
Meet Our Team
==================================== -->
<section id="team" class="team">
<div class="container">
<div class="row">
<div class="sec-title text-center wow fadeInUp animated" data-wow-duration="700ms">
<h2>Council 2018/2019</h2>
<div class="devider"><i class="fa fa-group fa-lg"></i></div>
</div>
<div class="sec-sub-title text-center wow fadeInRight animated" data-wow-duration="500ms">
<!-- <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore</p> -->
</div>
<div class="row">
<!-- president -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms">
<div class="member-thumb">
<img src="img/team/president.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<!-- <h5>voluptatem quia voluptas </h5>
<p>sit aspernatur aut odit aut fugit,</p> -->
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/kushan-dassayanake/" target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://www.facebook.com/kushan.dassanayake.1" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>kushan.das@eng.pdn.ac.lk</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Kushan Dassanayake</h4>
<span>President</span>
</figure>
<!-- end president -->
<!-- secretary -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="300ms">
<div class="member-thumb">
<img src="img/team/secretary.png" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/hashan-kavinda-657a82137/" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/delpiero.kavinda" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>delpierokavinda <br> @gmail.com</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Hashan Kavinda</h4>
<span>Secretary</span>
</figure>
<!-- end secretary -->
<!-- secretary -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="300ms">
<div class="member-thumb">
<img src="img/team/assSecret.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/ruchika-alwis-3020a2158/" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/ruchika.alwis" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>alwisruchika@gmail.com</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Ruchika Alwis</h4>
<span>Assistant Secretary</span>
</figure>
<!-- end secretary -->
<!-- treasurer -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="600ms">
<div class="member-thumb">
<img src="img/team/treasurer.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/suneth-namal-b70b8688/" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/suneth.namal" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>namal@ce.pdn.ac.lk</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Dr. Suneth Namal</h4>
<span>Senior Treasurer</span>
</figure>
<!-- end treasurer -->
<!-- vice president -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="900ms">
<div class="member-thumb">
<!-- <img src="img/team/vicePresident.jpg" alt="Team Member" class="img-responsive"> -->
<img src="img/team/vicePresident.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/wageesha-gunasena-5582b8147/" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/wageesha.gunasena.5" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6></h6></span><br>
</ul>
</figcaption>
</div>
<h4>Wageesha Gunasena</h4>
<span>Vice preisdent</span>
</figure>
<!-- end vice president -->
<!-- single junior treasurer -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="1200ms">
<div class="member-thumb">
<img src="img/team/treasurerJunior.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/hishan-indrajith/" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/hishan.indrajith" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>hishan.indrajith. <br> 95hia@gmail.com</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Hishan Indrajith</h4>
<span>Junior Treasurer</span>
</figure>
<!-- end junior treasurer -->
</div>
<div class="row" style="margin-top: 20px;">
<!-- editor -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="1500ms">
<div class="member-thumb">
<!-- <img src="img/team/editor.jpg" alt="Team Member" class="img-responsive"> -->
<img src="img/team/editor.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/chandima-jayawickrama" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/jayawickramachandima" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>erandanijayawickrama13 <br>.ej @gmail.com</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Chandima Jayawickrama</h4>
<span>Editor</span>
</figure>
<!-- end editor -->
<!-- Committee 11 -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="0ms">
<div class="member-thumb">
<img src="img/team/comitee11_1.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/hasindu-ramanayaka-08a882bb/" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/hasindu.ramanayaka" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>hasindu.ramanayaka <br> @eng.pdn.ac.lk</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Hasindu Ramanayaka</h4>
<span>Committee Member</span>
</figure>
<!-- end committee 11 -->
<!-- Committee 11 -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="300ms">
<div class="member-thumb">
<img src="img/team/comitee11_3.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/puwasuruihalagedara/" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/puwasuru.ihalagedara" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>puwasuru95@gmail.com</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Puwasuru Ihalagedara</h4>
<span>Committee Member</span>
</figure>
<!-- end committee 11 -->
<!-- Committee 11 -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="600ms">
<div class="member-thumb">
<img src="img/team/comitee11_2.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/sandali-lokuge" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/profile.php?id=100010461257725" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>sdewnilokuge@gmail.com</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Sandali Lokuge</h4>
<span>Committee Member</span>
</figure>
<!-- end committee 11 -->
<!-- Committee 12 -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="900ms">
<div class="member-thumb">
<img src="img/team/comitee12_1.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/sithara-pitiyage-b01253120/" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/sithara.pitiyage" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6></h6></span><br>
</ul>
</figcaption>
</div>
<h4>Sithara Pitiyage</h4>
<span>Committee Member</span>
</figure>
<!-- end committee 12 -->
<!-- Committee 12 -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="1200ms">
<div class="member-thumb">
<img src="img/team/comitee12_2.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/harsha-gayan-8bb317100/" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/harsha.gayan.77715" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6></h6></span><br>
</ul>
</figcaption>
</div>
<h4>Harsha Gayan Kosala</h4>
<span>Committee Member</span>
</figure>
<!-- end committee 12 -->
</div>
</div>
<div class="row" style="margin-top: 20px;margin-left: -123px;margin-right: 77px;">
<div class="col-md-3 col-sm-6 col-xs-12"></div>
<!-- Committee 12 -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="1500ms">
<div class="member-thumb">
<img src="img/team/comitee12_3.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/ireshe" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/rireshe" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>ireshe1996@gmail.com</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Rashmi Ireshe</h4>
<span>Committee Member</span>
</figure>
<!-- end committee 12 -->
<!-- Committee 13 -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="1500ms">
<div class="member-thumb">
<img src="img/team/comitee12_4.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/nethmal-warusamana-6a565512a" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/nethmalw" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>nethmalw@gmail.com</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Nethmal Warusamana</h4>
<span>Committee Member</span>
</figure>
<!-- end committee 13 -->
<!-- Committee 14 -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="1500ms">
<div class="member-thumb">
<img src="img/team/comitee12_5.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/shamal.tennakoon.9" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>shamal.ten@gmail.com</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Shamal Tennakoon</h4>
<span>Committee Member</span>
</figure>
<!-- end committee 14 -->
<!-- Committee 15 -->
<figure class="team-member col-md-2 col-sm-4 col-xs-8 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="1500ms">
<div class="member-thumb">
<img src="img/team/comitee12_6.jpg" alt="Team Member" class="img-responsive">
<figcaption class="overlay">
<ul class="social-links text-center">
<li><a href="https://www.linkedin.com/in/chalani-weerarathana-207236166/" target="_blank"><i class="fa fa-linkedin fa-sm"></i></a></li>
<li><a href="https://www.facebook.com/profile.php?id=100011098721948" target="_blank"><i class="fa fa-facebook fa-sm"></i></a></li>
<!-- <li><a href=""><i class="fa fa-google-plus fa-sm"></i></a></li> -->
<br><br><span><h6>chalanisweerarathna@<br>gmail.com</h6></span><br>
</ul>
</figcaption>
</div>
<h4>Chalani Weerarathna</h4>
<span>Committee Member</span>
</figure>
<!-- end committee 15 -->
</div>
</div>
</section>
<!--
End Meet Our Team
==================================== -->
<!--
Some fun facts
==================================== -->
<!-- <section id="facts" class="facts">
<div class="parallax-overlay">
<div class="container">
<div class="row number-counters">
<div class="sec-title text-center mb50 wow rubberBand animated" data-wow-duration="1000ms">
<h2>Some Fun Facts</h2>
<div class="devider"><i class="fa fa-heart-o fa-lg"></i></div>
</div>
first count item
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow fadeInUp animated" data-wow-duration="500ms">
<div class="counters-item">
<i class="fa fa-clock-o fa-3x"></i>
<strong data-to="3200">0</strong>
Set Your Number here. i,e. data-to="56"
<p>Hours of Work</p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="300ms">
<div class="counters-item">
<i class="fa fa-users fa-3x"></i>
<strong data-to="120">0</strong>
Set Your Number here. i,e. data-to="56"
<p>Satisfied Clients</p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="600ms">
<div class="counters-item">
<i class="fa fa-rocket fa-3x"></i>
<strong data-to="360">0</strong>
Set Your Number here. i,e. data-to="56"
<p> Projects Delivered </p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="900ms">
<div class="counters-item">
<i class="fa fa-trophy fa-3x"></i>
<strong data-to="6454">0</strong>
Set Your Number here. i,e. data-to="56"
<p>Awards Won</p>
</div>
</div>
end first count item
</div>
</div>
</div>
</section> -->
<!--
End Some fun facts
==================================== -->
<!--
Contact Us
==================================== -->
<section id="contact" class="contact">
<div class="container">
<div class="row mb50">
<div class="sec-title text-center mb50 wow fadeInDown animated" data-wow-duration="500ms">
<h2>Let’s Discuss</h2>
<div class="devider"><i class="fa fa-envelope-o fa-lg"></i></div>
</div>
<div class="sec-sub-title text-center wow rubberBand animated" data-wow-duration="1000ms">
<p>aces@eng.pdn.ac.lk</p>
</div>
<!-- contact address -->
<!-- <div class="col-lg-3 col-md-3 col-sm-4 col-xs-12 wow fadeInLeft animated" data-wow-duration="500ms">
<div class="contact-address">
<h3>Cras at ultrices erat, sed vulputate!</h3>
<p>2345 Setwant natrer, 1234,</p>
<p>Washington. United States.</p>
<p>(401) 1234 567</p>
</div>
</div> -->
<!-- end contact address -->
<!-- contact form -->
<!-- <div class="col-lg-8 col-md-8 col-sm-7 col-xs-12 wow fadeInDown animated" data-wow-duration="500ms" data-wow-delay="300ms">
<div class="contact-form">
<h3>Say hello!</h3>
<form action="#" id="contact-form">
<div class="input-group name-email">
<div class="input-field">
<input type="text" name="name" id="name" placeholder="Name" class="form-control">
</div>
<div class="input-field">
<input type="email" name="email" id="email" placeholder="Email" class="form-control">
</div>
</div>
<div class="input-group">
<textarea name="message" id="message" placeholder="Message" class="form-control"></textarea>
</div>
<div class="input-group">
<input type="submit" id="form-submit" class="pull-right" value="Send message">
</div>
</form>
</div>
</div> -->
<!-- end contact form -->
<!-- footer social links -->
<!-- <div class="col-lg-1 col-md-1 col-sm-1 col-xs-12 wow fadeInRight animated" data-wow-duration="500ms" data-wow-delay="600ms">
<ul class="footer-social">
<li><a href="https://www.behance.net/Themefisher"><i class="fa fa-behance fa-2x"></i></a></li>
<li><a href="https://www.twitter.com/Themefisher"><i class="fa fa-twitter fa-2x"></i></a></li>
<li><a href="https://dribbble.com/themefisher"><i class="fa fa-dribbble fa-2x"></i></a></li>
<li><a href="https://www.facebook.com/Themefisher"><i class="fa fa-facebook fa-2x"></i></a></li>
</ul>
</div> -->
<!-- end footer social links -->
</div>
</div>
<!-- Google map -->
<!-- <div id="map_canvas" class="wow bounceInDown animated" data-wow-duration="500ms"></div> -->
<!-- End Google map -->
</section>
<!--
End Contact Us
==================================== -->
<footer id="footer" class="footer">
<div class="container">
<!-- <div class="row">
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeInUp animated" data-wow-duration="500ms">
<div class="footer-single">
<img src="img/footer-logo.png" alt="">
<p>eusmod 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.</p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="300ms">
<div class="footer-single">
<h6>Subscribe </h6>
<form action="#" class="subscribe">
<input type="text" name="subscribe" id="subscribe">
<input type="submit" value="→" id="subs">
</form>
<p>eusmod tempor incididunt ut labore et dolore magna aliqua. </p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="600ms">
<div class="footer-single">
<h6>Explore</h6>
<ul>
<li><a href="#">Inside Us</a></li>
<li><a href="#">Flickr</a></li>
<li><a href="#">Google</a></li>
<li><a href="#">Forum</a></li>
</ul>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="900ms">
<div class="footer-single">
<h6>Support</h6>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Market Blog</a></li>
<li><a href="#">Help Center</a></li>
<li><a href="#">Pressroom</a></li>
</ul>
</div>
</div>
</div> -->
<div class="row">
<div class="col-md-12">
<p class="copyright text-center">
Copyright © 2016 <a href="http://ce.pdn.ac.lk/">ACES</a>, Association of Computer Engineering Students, University of Peradeniya. All rights reserved.
</p>
</div>
</div>
</div>
</footer>
<a href="javascript:void(0);" id="back-top"><i class="fa fa-angle-up fa-3x"></i></a>
<!-- Essential jQuery Plugins
================================================== -->
<!-- Main jQuery -->
<script src="js/jquery-1.11.1.min.js"></script>
<!-- Single Page Nav -->
<script src="js/jquery.singlePageNav.min.js"></script>
<!-- Twitter Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- jquery.fancybox.pack -->
<script src="js/jquery.fancybox.pack.js"></script>
<!-- jquery.mixitup.min -->
<script src="js/jquery.mixitup.min.js"></script>
<!-- jquery.parallax -->
<script src="js/jquery.parallax-1.1.3.js"></script>
<!-- jquery.countTo -->
<script src="js/jquery-countTo.js"></script>
<!-- jquery.appear -->
<script src="js/jquery.appear.js"></script>
<!-- Contact form validation -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.form/3.32/jquery.form.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.11.1/jquery.validate.min.js"></script>
<!-- Google Map -->
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<!-- jquery easing -->
<script src="js/jquery.easing.min.js"></script>
<!-- jquery easing -->
<script src="js/wow.min.js"></script>
<script>
var wow = new WOW ({
boxClass: 'wow', // animated element css class (default is wow)
animateClass: 'animated', // animation css class (default is animated)
offset: 120, // distance to the element when triggering the animation (default is 0)
mobile: false, // trigger animations on mobile devices (default is true)
live: true // act on asynchronously loaded content (default is true)
}
);
wow.init();
</script>
<!-- Custom Functions -->
<script src="js/custom.js"></script>
<script type="text/javascript">
$(function(){
/* ========================================================================= */
/* Contact Form
/* ========================================================================= */
$('#contact-form').validate({
rules: {
name: {
required: true,
minlength: 2
},
email: {
required: true,
email: true
},
message: {
required: true
}
},
messages: {
name: {
required: "come on, you have a name don't you?",
minlength: "your name must consist of at least 2 characters"
},
email: {
required: "no email, no message"
},
message: {
required: "um...yea, you have to write something to send this form.",
minlength: "thats all? really?"