-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·881 lines (728 loc) · 40.7 KB
/
Copy pathindex.php
File metadata and controls
executable file
·881 lines (728 loc) · 40.7 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
<!doctype html>
<!--[if IE 9]> <html class="no-js ie9 fixed-layout" lang="en"> <![endif]-->
<!--[if gt IE 9]><!--> <html class="no-js " lang="en"> <!--<![endif]-->
<head>
<!-- Basic -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Site Meta -->
<title>University-Student Union</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<!-- jquery-->
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<!-- Site Icons -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<script src="https://kit.fontawesome.com/2b3a6bf91c.js"></script>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Droid+Serif:400,400i,700,700i" rel="stylesheet">
<!-- Custom & Default Styles -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/carousel.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="style.css">
<!--[if lt IE 9]>
<script src="js/vendor/html5shiv.min.js"></script>
<script src="js/vendor/respond.min.js"></script>
<![endif]-->
<style>
html{
scroll-behavior: smooth;
}
</style>
<script type="text/javascript">
$('video').prop('muted',true)[0].play()
$(document).ready(function(){
// $(".menu-toggle").click(
// function () {
// $(".menu-toggle").css("background", " #fff url(https://cdn0.iconfinder.com/data/icons/octicons/1024/x-512.png) 50% 50%/25px 25px no-repeat;!important");
//
//
// }
//
// );
//
// $(".menu-toggle").click(
// function () {
// $(".menu-toggle").toggleClass("ex");
//
//
// }
//
// );
//
$(".pop").click(function(){
$(".DeptOverlay").fadeToggle(200);
// $(".button a").fadeToggle(200);
});
// $(".button a").fadeToggle(200);
//
//
$(".backIcon").click(function(){
$(".DeptOverlay").fadeToggle(200);
//
// $(".button a").fadeToggle(200);
});
$(".DeptOverlay" ).scroll(function () {
if ($(this).scrollTop() > 100) {
$('.scrollIcon').fadeIn();
} else {
$('.scrollIcon').fadeOut();
}
});
$('.scrollIcon').click(function () {
$(".DeptOverlay").animate({
scrollTop: 0
}, 600);
return false;
});
});
//$('.overlay').on('click', function(){
//// $(".overlay").fadeToggle(200);
// $(".button a").toggleClass('btn-open').toggleClass('btn-close');
// open = false;
//
// });
</script></head>
<body>
<div class="DeptOverlay " >
<div class="wrap">
<div class="backIcon"><i class="fas fa-angle-up"></i></div>
<ul class="wrap-nav">
<li class="First" ><a class="deptHeading" href="#">Recreation</a>
<ul>
<ul>
<li class="link" ><a class="deptLink" href="/xtremefitness"> Xtreme Fitness </a></li>
<li class="link" ><a class="deptLink" href="/pit"> The Pit</a></li>
</ul>
</ul>
<a class="deptHeading" href="#">Graffix</a>
<ul>
<ul>
<li class="link" ><a class="deptLink" href="/acui">ACUI Awards</a></li>
</ul>
</ul>
<a class="deptHeading" href="#">Operations</a>
<ul>
<ul>
<li class="link" ><a class="deptLink" href="/meetingrooms.php">Meeting Rooms</a></li>
<li class="link" ><a class="deptLink" href="/Applications.php" title="Menu option 'Forms'">Forms</a></li>
</ul>
</ul>
</li>
<li class="second"><a class="deptHeading" hxref="#">Cross Cultural Centers</a>
<ul>
<li class="link" ><a class="deptLink" href="/apisrc">Asian Pacific Islander<br/> Student Resource Center</a></li>
<li class="link" ><a class="deptLink" href="/clsrc">Chicana/o Latina/o<br/> Student Resource Center</a></li>
<li class="link"><a class="deptLink" href="/ccc-cgc">Cultural Graduate Celebrations</a></li>
<li class="link"><a class="deptLink" href="/women.php">Distinguished Women Awards</a></li>
<li class="link"><a class="deptLink" href="/gsrc">Gender and Sexuality Resource Center</a></li>
<li class="link" ><a class="deptLink" href="/leadershipforsocialjustice">Leadership For Social Justice Series</a></li>
<li class="link" ><a class="deptLink" href="/allyship">LGTQIA+ Allyship<br/> Training</a></li>
<li class="link" ><a class="deptLink" href="/ccc-goals">Operations, Goals, and<br/> Learning Outcomes</a></li>
<li class="link" ><a class="deptLink" href="/pasrc">Pan African Student<br/> Resource Center</a></li>
<li class="link" ><a class="deptLink" href="/ccc-services">Services & Resources</a></li>
<li class="link" ><a class="deptLink" href="/wocc">Womyn and Femmes Of Color Symposium</a></li>
</ul>
</li>
<li class="third"><a class="deptHeading " href="#">Center For Student Involvment</a>
<ul>
<li class="link" ><a class="deptLink" href="#">Activities, Programs,<br/> and Trips</a></li>
<li class="link" ><a class="deptLink" href="#">Eagles Care</a></li>
<li class="link" ><a class="deptLink" href="#">Fraternity & Sorority Life</a></li>
<li class="link" ><a class="deptLink" href="/GEEK">Golden Eagle Event Krew (GEEK)</a> </li>
<li class="link" ><a class="deptLink" href="https://www.calstatela.edu/studentservices/golden-eagle-handbook" target="_blank">Golden Eagle Handbook</a></li>
<li class="link" ><a class="deptLink" title="Leadershape Institute" href="/leadershape.php">LeaderShape </a></li>
<li class="link" ><a class="deptLink" href="/leadership-academy">Leadership Academy</a></li>
<li class="link" ><a class="deptLink" href="/leap">Leadership Exploration And Advancement Program (L.E.A.P.)</a></li>
<li class="link" ><a class="deptLink" href="/LeadershipRetreat.php">Leadership Retreat (FLY)</a></li>
<li class="link" ><a class="deptLink" href="/music">Music & Talent </a></li>
<li class="link" ><a class="deptLink" href="/sla">Student Leader Awards</a></li>
<li class="link" ><a class="deptLink" href="/studentorglist">Student Organizations</a></li>
<li class="link" ><a class="deptLink" href="/csi-forms">Student Organization<br/> Handbook, Forms, and Policies</a> </li>
<li class="link" ><a class="deptLink" href="/ulead">U-Lead</a></li>
<!--<li><a href="#">Awards, Scholarships, and<br/>Recognition</a></li>-->
</ul>
</li>
</ul>
<div class="scrollIcon">
<i class="fas fa-angle-double-up"></i>
</div>
</div>
</div>
<!-- LOADER -->
<div id="preloader">
<img class="preloader" src="images/loader.gif" alt="">
</div><!-- end loader -->
<!-- END LOADER -->
<div id="wrapper">
<!-- BEGIN # MODAL LOGIN -->
<div class="modal fade" id="login-modal" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<!-- Begin # DIV Form -->
<div id="div-forms">
<form id="login-form">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span class="flaticon-add" aria-hidden="true"></span>
</button>
<div class="modal-body">
<input class="form-control" type="text" placeholder="What you are looking for?" required>
</div>
</form><!-- End # Login Form -->
</div><!-- End # DIV Form -->
</div>
</div>
</div>
<!-- END # MODAL LOGIN -->
<?php include ("./includes/header.php");?>
<section id="home" class="video-section js-height-full">
<div class="overlay">
</div>
<div class="home-text-wrapper relative container">
<div class="home-message">
<p>University-Student Union</p>
<small>Lorem ipsum.</small>
<div class="btn-wrapper">
<div class="text-center">
<!-- <a href="#" class="btn btn-primary wow slideInLeft">Read More</a> -->
<!-- <a href="#" class="btn btn-default wow slideInRight">Buy Now</a> -->
</div>
</div><!-- end row -->
</div>
</div>
<div class="slider-bottom">
<a href="#start" style="color:white"><span >Explore <i class="fa fa-angle-down"></i></span></a>
</div>
</section>
<section class="section" style="display:none;">
<div class="container">
<div class="row">
<div class="col-md-4 hidden-sm hidden-xs">
<div class="custom-module">
<img src="images/calendar.png" alt="" class="img-responsive wow slideInLeft">
</div><!-- end module -->
</div><!-- end col -->
<div class="col-md-8">
<div class="custom-module p40l">
<h2>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</h2>
<p>Nam dictum sem, ipsum aliquam . Etiam sit amet fringilla lacus. Pellentesque suscipit ante at ullamcorper pulvinar neque porttitor. Integer lectus. Praesent sed nisi eleifend, fermentum orci amet, iaculis libero.</p>
<hr class="invis">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 first">
<ul class="check">
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
</ul><!-- end check -->
</div><!-- end col-lg-4 -->
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
<ul class="check">
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
</ul><!-- end check -->
</div><!-- end col-lg-4 -->
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 last">
<ul class="check">
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
</ul><!-- end check -->
</div><!-- end col-lg-4 -->
</div><!-- end row -->
<hr class="invis">
<div class="btn-wrapper">
<a href="#" class="btn btn-primary">Open Calendar</a>
</div>
</div><!-- end module -->
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<section class="section gb" style="display: none">
<div class="container">
<div class="section-title text-center">
<h3>Recent Courses</h3>
<p>Maecenas sit amet tristique turpis. Quisque porttitor eros quis leo pulvinar, at hendrerit sapien iaculis. Donec consectetur accumsan arcu, sit amet fringilla ex ultricies.</p>
</div><!-- end title -->
<div id="owl-01" class="owl-carousel owl-theme owl-theme-01">
<div class="caro-item">
<div class="course-box">
<div class="image-wrap entry">
<img src="upload/course_01.jpg" alt="" class="img-responsive">
<div class="magnifier">
<a href="#" title=""><i class="flaticon-add"></i></a>
</div>
</div><!-- end image-wrap -->
<div class="course-details">
<h4>
<small>Javascript</small>
<a href="#" title="">Modern JavaScript Linting With ESLint</a>
</h4>
<p>Fusce interdum, elit sit amet vehicula malesuada, eros libero elementum orci.</p>
</div><!-- end details -->
<div class="course-footer clearfix">
<div class="pull-left">
<ul class="list-inline">
<li><a href="#"><i class="fa fa-user"></i> 21</a></li>
<li><a href="#"><i class="fa fa-clock-o"></i> 15 Min.</a></li>
</ul>
</div><!-- end left -->
<div class="pull-right">
<ul class="list-inline">
<li><a href="#">$22.00</a></li>
</ul>
</div><!-- end left -->
</div><!-- end footer -->
</div><!-- end box -->
</div><!-- end col -->
<div class="caro-item">
<div class="course-box">
<div class="image-wrap entry">
<img src="upload/course_02.jpg" alt="" class="img-responsive">
<div class="magnifier">
<a href="#" title=""><i class="flaticon-add"></i></a>
</div>
</div><!-- end image-wrap -->
<div class="course-details">
<h4>
<small>Design</small>
<a href="#" title="">Designing Game UI Assets in Adobe Illustrator</a>
</h4>
<p>Curabitur condimentum velit non odio mattis tristique. Nam vitae orci aliquam. </p>
</div><!-- end details -->
<div class="course-footer clearfix">
<div class="pull-left">
<ul class="list-inline">
<li><a href="#"><i class="fa fa-user"></i> 41</a></li>
<li><a href="#"><i class="fa fa-clock-o"></i> 33 Min.</a></li>
</ul>
</div><!-- end left -->
<div class="pull-right">
<ul class="list-inline">
<li><a href="#">$55.00</a></li>
</ul>
</div><!-- end left -->
</div><!-- end footer -->
</div><!-- end box -->
</div><!-- end col -->
<div class="caro-item">
<div class="course-box">
<div class="image-wrap entry">
<img src="upload/course_03.jpg" alt="" class="img-responsive">
<div class="magnifier">
<a href="#" title=""><i class="flaticon-add"></i></a>
</div>
</div><!-- end image-wrap -->
<div class="course-details">
<h4>
<small>PHP Coding</small>
<a href="#" title="">How to Become a Web Developer: Learn PHP</a>
</h4>
<p>Donec auctor nec nibh sit amet pulvinar. Mauris nulla elit, lacinia ac facilisis mattis.</p>
</div><!-- end details -->
<div class="course-footer clearfix">
<div class="pull-left">
<ul class="list-inline">
<li><a href="#"><i class="fa fa-user"></i> 35</a></li>
<li><a href="#"><i class="fa fa-clock-o"></i> 1 Hrs.</a></li>
</ul>
</div><!-- end left -->
<div class="pull-right">
<ul class="list-inline">
<li><a href="#">$51.00</a></li>
</ul>
</div><!-- end left -->
</div><!-- end footer -->
</div><!-- end box -->
</div><!-- end col -->
<div class="caro-item">
<div class="course-box">
<div class="image-wrap entry">
<img src="upload/course_04.jpg" alt="" class="img-responsive">
<div class="magnifier">
<a href="#" title=""><i class="flaticon-add"></i></a>
</div>
</div><!-- end image-wrap -->
<div class="course-details">
<h4>
<small>PHP Coding</small>
<a href="#" title="">How to Build a Custom Theme for Drupal 8</a>
</h4>
<p>Pellentesque ut enim dictum, interdum lorem eget, vulputate eros sed felis euismod.</p>
</div><!-- end details -->
<div class="course-footer clearfix">
<div class="pull-left">
<ul class="list-inline">
<li><a href="#"><i class="fa fa-user"></i> 35</a></li>
<li><a href="#"><i class="fa fa-clock-o"></i> 45 Min.</a></li>
</ul>
</div><!-- end left -->
<div class="pull-right">
<ul class="list-inline">
<li><a href="#">$51.00</a></li>
</ul>
</div><!-- end left -->
</div><!-- end footer -->
</div><!-- end box -->
</div><!-- end col -->
<div class="caro-item">
<div class="course-box">
<div class="image-wrap entry">
<img src="upload/course_01.jpg" alt="" class="img-responsive">
<div class="magnifier">
<a href="#" title=""><i class="flaticon-add"></i></a>
</div>
</div><!-- end image-wrap -->
<div class="course-details">
<h4>
<small>Javascript</small>
<a href="#" title="">Modern JavaScript Linting With ESLint</a>
</h4>
<p>Fusce interdum, elit sit amet vehicula malesuada, eros libero elementum orci.</p>
</div><!-- end details -->
<div class="course-footer clearfix">
<div class="pull-left">
<ul class="list-inline">
<li><a href="#"><i class="fa fa-user"></i> 21</a></li>
<li><a href="#"><i class="fa fa-clock-o"></i> 15 Min.</a></li>
</ul>
</div><!-- end left -->
<div class="pull-right">
<ul class="list-inline">
<li><a href="#">$22.00</a></li>
</ul>
</div><!-- end left -->
</div><!-- end footer -->
</div><!-- end box -->
</div><!-- end col -->
</div><!-- end row -->
<hr class="invis">
<div class="section-button text-center">
<a href="#" class="btn btn-primary">View All Courses</a>
</div>
</div><!-- end container -->
</section>
<section class="section p120" id="start" style="background-color: #ffce00;">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="tagline-message text-center">
<h3 style="color:black">Lorem Ipsum is simply dummy text of the printing and typesetting!</h3>
</div>
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end container -->
</section><!-- end section -->
<section class="section gb nopadtop" style="display: none" >
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="box m30">
<i class="flaticon-computer-tool-for-education"></i>
<h4>Learning system</h4>
<p>All sections required for online training are included to Edulogy.</p>
<a href="#" class="readmore">Read more</a>
</div>
</div><!-- end col -->
<div class="col-md-6">
<div class="box m30">
<i class="flaticon-monitor-tablet-and-smartohone"></i>
<h4>Works all mobile devices</h4>
<p>The most important feature of this template is that it is compatible with all mobile devices. Your customers can also visit your site easily from tablets and phones.</p>
<a href="#" class="readmore">Read more</a>
</div>
</div><!-- end col -->
<div class="col-md-3">
<div class="box m30">
<i class="flaticon-download-business-statistics-symbol-of-a-graphic"></i>
<h4>User Dashboard</h4>
<p>We designed the design of all the sub-pages needed for the users.</p>
<a href="#" class="readmore">Read more</a>
</div>
</div><!-- end col -->
</div><!-- end row -->
<hr class="invis">
<div class="row">
<div class="col-md-6">
<div class="box">
<i class="flaticon-html5"></i> <i class="flaticon-css-3"></i>
<h4>Compatible HTML5 & CSS3</h4>
<p>HTML5 is a markup language used for structuring and presenting content on the World Wide Web. It is the fifth and current version of the HTML standard.</p>
<a href="#" class="readmore">Read more</a>
</div>
</div><!-- end col -->
<div class="col-md-6">
<div class="box">
<i class="flaticon-html-coding"></i>
<h4>Bootstrap Framework</h4>
<p>Bootstrap is a technique of loading a program into a computer by means of a few initial instructions which enable the introduction of the rest of the program from an input device.</p>
<a href="#" class="readmore">Read more</a>
</div>
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<section class="section gb nopadtop">
<div class="container">
<div class="section-title text-center" style="display: none">
<h3>Events</h3>
<p>Maecenas sit amet tristique turpis. Quisque porttitor eros quis leo pulvinar, at hendrerit sapien iaculis. Donec consectetur accumsan arcu, sit amet fringilla ex ultricies.</p>
</div><!-- end title -->
<div class="row ">
<div class="col-lg-4 col-md-12 m30">
<div class="blog-box">
<div class="image-wrap entry">
<img src="upload/wellnessweek.jpg" alt="" class="img-responsive">
<div class="magnifier">
<a href="blog-single.php" title=""><i class="flaticon-add"></i></a>
</div>
</div><!-- end image-wrap -->
<div class="blog-desc">
<h4><a href="blog-single.php">Wellness Week!</a></h4>
<p>Praesent at suscipit ligula. Suspendisse pre neque, quis suscipit enim. sed maximus, mia auctor.</p>
</div><!-- end blog-desc -->
<div class="post-meta">
<ul class="list-inline">
<li><a href="#">22 August 2019, Main Walkway</a></li>
</ul>
</div><!-- end post-meta -->
</div><!-- end blog -->
</div><!-- end col -->
<div class="col-lg-4 col-md-12 m30">
<div class="blog-box">
<div class="image-wrap entry">
<img src="upload/happyhour.jpg" alt="" class="img-responsive">
<div class="magnifier">
<a href="blog-single.php" title=""><i class="flaticon-add"></i></a>
</div>
</div><!-- end image-wrap -->
<div class="blog-desc">
<h4><a href="blog-single.php">Happy Hour!</a></h4>
<p>Sed suscipit neque in erat posuere tristique aliquam porta vestibulum. Cras placerat tincidunt. </p>
</div><!-- end blog-desc -->
<div class="post-meta">
<ul class="list-inline">
<li><a href="#">21 March 2019, The PIT</a></li>
</ul>
</div><!-- end post-meta -->
</div><!-- end blog -->
</div><!-- end col -->
<div class="col-lg-4 col-md-12 m30">
<div class="blog-box">
<div class="image-wrap entry">
<img src="upload/3krun.jpg" alt="" class="img-responsive">
<div class="magnifier">
<a href="blog-single.php" title=""><i class="flaticon-add"></i></a>
</div>
</div><!-- end image-wrap -->
<div class="blog-desc">
<h4><a href="blog-single.php">Golden Eagle 3k Run!</a></h4>
<p>Suspendisse scelerisque ex ac mattis molestie vel enim ut massa placerat faucibus sed ut dui vivamus. </p>
</div><!-- end blog-desc -->
<div class="post-meta">
<ul class="list-inline">
<li><a href="#">22 August 2019, Main Walkway</a></li>
</ul>
</div><!-- end post-meta -->
</div><!-- end blog -->
</div><!-- end col -->
<div class="col-lg-4 col-md-12">
<div class="blog-box">
<div class="image-wrap entry">
<img src="upload/crewlove.jpg" alt="" class="img-responsive">
<div class="magnifier">
<a href="blog-single.php" title=""><i class="flaticon-add"></i></a>
</div>
</div><!-- end image-wrap -->
<div class="blog-desc">
<h4><a href="blog-single.php">Crew Love!</a></h4>
<p>Praesent at suscipit ligula. Suspendisse pre neque, quis suscipit enim. sed maximus, mia auctor.</p>
</div><!-- end blog-desc -->
<div class="post-meta">
<ul class="list-inline">
<li><a href="#">22nd August 2019, Alhambra Room</a></li>
<li><a href="#"> 3rd Floor, University-Student Union</a></li>
</ul>
</div><!-- end post-meta -->
</div><!-- end blog -->
</div><!-- end col -->
<div class="col-lg-4 col-md-12">
<div class="blog-box">
<div class="image-wrap entry">
<img src="upload/eaglecon.jpg" alt="" class="img-responsive">
<div class="magnifier">
<a href="blog-single.php" title=""><i class="flaticon-add"></i></a>
</div>
</div><!-- end image-wrap -->
<div class="blog-desc">
<h4><a href="blog-single.php">Eagle Con!</a></h4>
<p>Sed suscipit neque in erat posuere tristique aliquam porta vestibulum. Cras placerat tincidunt. </p>
</div><!-- end blog-desc -->
<div class="post-meta">
<ul class="list-inline">
<li><a href="#">21 March 2019, The PIT</a></li>
</ul>
</div><!-- end post-meta -->
</div><!-- end blog -->
</div><!-- end col -->
<div class="col-lg-4 col-md-12">
<div class="blog-box">
<div class="image-wrap entry">
<img src="upload/ulead.jpg" alt="" class="img-responsive">
<div class="magnifier">
<a href="blog-single.php" title=""><i class="flaticon-add"></i></a>
</div>
</div><!-- end image-wrap -->
<div class="blog-desc">
<h4><a href="blog-single.php">U-Lead!</a></h4>
<p>Suspendisse scelerisque ex ac mattis molestie vel enim ut massa placerat faucibus sed ut dui vivamus. </p>
</div><!-- end blog-desc -->
<div class="post-meta">
<ul class="list-inline">
<li><a href="#">22 August 2019, Main Walkway</a></li>
</ul>
</div><!-- end post-meta -->
</div><!-- end blog -->
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<section class="section db" style="display:none">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4">
<div class="stat-count">
<h4 class="stat-timer">1230</h4>
<h3><i class="flaticon-black-graduation-cap-tool-of-university-student-for-head"></i> Happy Students</h3>
<p>Quisque porttitor eros quis leo pulvinar, at hendrerit sapien iaculis. </p>
</div><!-- stat-count -->
</div><!-- end col -->
<div class="col-lg-4 col-md-4">
<div class="stat-count">
<h4 class="stat-timer">331</h4>
<h3><i class="flaticon-online-course"></i> Course Done</h3>
<p>Quisque porttitor eros quis leo pulvinar, at hendrerit sapien iaculis. </p>
</div><!-- stat-count -->
</div><!-- end col -->
<div class="col-lg-4 col-md-4">
<div class="stat-count">
<h4 class="stat-timer">8901</h4>
<h3><i class="flaticon-coffee-cup"></i> Ordered Coffe's</h3>
<p>Quisque porttitor eros quis leo pulvinar, at hendrerit sapien iaculis. </p>
</div><!-- stat-count -->
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<section class="section">
<div class="container">
<div class="section-title text-center">
<h3>Testimonials</h3>
<p>Maecenas sit amet tristique turpis. Quisque porttitor eros quis leo pulvinar, at hendrerit sapien iaculis. Donec consectetur accumsan arcu, sit amet fringilla ex ultricies.</p>
</div><!-- end title -->
<div class="row">
<div class="col-md-4">
<div class="box testimonial">
<p class="testiname"><strong><img src="upload/testimonial_01.png" alt="" class="img-circle"> Jenny LUXURY</strong></p>
<p>Quisque porttitor eros quis leo pulvinar, at hendrerit sapien iaculis. Donec consectetur accumsan arcu, sit amet fringilla ex ultricies.</p>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
</div><!-- end testimonial -->
</div><!-- end col -->
<div class="col-md-4">
<div class="box testimonial">
<p class="testiname"><strong><img src="upload/testimonial_02.png" alt="" class="img-circle"> Martin LEO</strong></p>
<p>Quisque porttitor eros quis leo pulvinar, at hendrerit sapien iaculis. Donec consectetur accumsan arcu, sit amet fringilla ex ultricies.</p>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</div>
</div><!-- end testimonial -->
</div><!-- end col -->
<div class="col-md-4">
<div class="box testimonial">
<p class="testiname"><strong><img src="upload/testimonial_03.png" alt="" class="img-circle"> John DOE</strong></p>
<p>Quisque porttitor eros quis leo pulvinar, at hendrerit sapien iaculis. Donec consectetur accumsan arcu, sit amet fringilla ex ultricies.</p>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
</div><!-- end testimonial -->
</div><!-- end col -->
</div><!-- end row -->
</div><!-- end container -->
</section>
<section class="section bgcolor1">
<div class="container">
<a href="#">
<div class="row callout">
<div class="col-md-4 text-center">
<!-- <h3><sup>$</sup>49.99</h3> -->
<!-- <h4>Start your awesome course today!</h4> -->
</div><!-- end col -->
<div class="col-md-8">
<p class="lead">Any Information here! </p>
</div>
</div><!-- end row -->
</a>
</div><!-- end container -->
</section>
<?php include ("./includes/footer.php");?>
<!-- <div class="copyrights">
<div class="container">
<div class="clearfix">
<div class="pull-left">
<div class="cop-logo">
<a href="#"><img src="images/logo.png" alt=""></a>
</div>
</div>
<div class="pull-right">
<div class="footer-links">
<ul class="list-inline">
<li>Design : <a href="https://html.design">HTML.Design</a></li>
<li>Distributed by : <a href="https://themewagon.com/" target="_blank">ThemeWagon</a></li>
</ul>
</div>
</div>
</div> -->
<!-- </div><!-- end container -->
<!-- </div><!-- end copy -->
<!-- </div><!-- end wrapper -->
<!-- jQuery Files -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/carousel.js"></script>
<script src="js/animate.js"></script>
<script src="js/custom.js"></script>
<!-- VIDEO BG PLUGINS -->
<script src="js/videobg.js"></script>
</body>
</html>