-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.php
60 lines (52 loc) · 1.89 KB
/
events.php
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
<?php
include("partials/header.php");
?>
<!-- Intro Header -->
<header class="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="brand-heading">Fall Events</h1>
<p class="intro-text">Workshops, hackathons, and endless possibilites</p>
<a href="#about" class="btn btn-circle page-scroll">
<i class="fa fa-angle-double-down animated"></i>
</a>
</div>
</div>
</div>
</div>
</header>
<!-- Events Section -->
<section id="about" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h3 class="event-title">Bootstrap Workshop</h3>
<h4 class="light event-sub">
7:00 - 9:00PM // September 22th, 2015<br>
147 Comm Arts Building
</h4>
<h3 class="event-title">Web Server Setup / Workshop</h3>
<h4 class="light event-sub">
7:00 - 9:00PM // September 29th, 2015<br>
1345 Engineering Building
</h4>
<h3 class="event-title">Local Hack Day</h3>
<h4 class="light event-sub">
9:00AM - 9:00PM // October 10th, 2015<br>
Location TBD
</h4>
<h3 class="event-title">Future events are TBD</h3>
<hr>
<h2 class="event-title">Past Events</h2>
<h3 class="event-title">Intro to HTML / CSS / JS </h3>
<h4 class="light event-sub">
7:00 - 9:00PM // September 8th, 2015<br>
147 Comm Arts Building
</h4>
</div>
</div>
</section>
<?php
include("partials/footer.php");
?>