forked from cofitiggs/Taylor-McNeil.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
328 lines (236 loc) · 14 KB
/
events.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Events</title>
<link rel="stylesheet" href="css/events.css" type="text/css" media="all">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Crimson+Text|Unica+One" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <!-- Social Media Icons-->
</head>
<body>
<header>
<!-- The Nav Bar-->
<nav class="navbar navbar-expand-md fixed-top">
<a class="navbar-brand " style="color: white" href="about.html">PantherHackers</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon">
<i class="fa fa-navicon"style="color: white" ></i>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ml-auto text">
<li class="nav-item">
<a class="nav-link" href="events.html">Events</a>
</li>
<!-- Drop down portion of the nav bar-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Interest Groups
</a>
<div class="inner">
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="ios.html">IOS Development</a>
<a class="dropdown-item" href="pantheress.html">Pantheress</a>
<a class="dropdown-item" href="robotics.html">Robotics</a>
<a class="dropdown-item" href="cybersecurity.html">CyberSecurity</a>
<a class="dropdown-item" href="ctci.html">CTCI</a>
<a class="dropdown-item" href="https://ecodrop.tech/">Ecodrop</a>
</div>
</div>
</li>
<!--
<li class="nav-item">
<a class="nav-link" href="resources.html">Resources</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="#" data-toggle="modal" data-target="#ContactUsModal">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- Modals for Nav Bar (Contact)-->
<div class="modal fade " tabindex="-1" role="dialog" id=ContactUsModal>
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title">Want to Chat?</h1>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Our pages are still under construction. If you need to chat, hit us up on our socials or email us: [email protected]</p>
</div>
<div class="modal-footer justify-content-between">
<a href="https://twitter.com/pantherhackers?lang=en" class="fa fa-twitter fa-2x "></a>
<a href="https://join.slack.com/t/pantherhackers/shared_invite/enQtNTgzMzU2MDI2MzczLTFhZjgxNWY5MTI2NWYzMTVmOTJiMTBlODIxNWJmODdiOWY1NTBhYWQwZmFiMWE0NWRlZDEyMDM2MmEwYzQwOTQ" class="fa fa-slack fa-2x"></a>
<a href="https://www.instagram.com/pantherhackers/" class="fa fa-instagram fa-2x"></a>
<a href ="https://www.linkedin.com/company/12177373" class="fa fa-linkedin fa-2x"></a>
<a href="https://www.facebook.com/PantherHackers/" class="fa fa-facebook fa-2x"></a>
</div>
</div>
</div>
</div>
</header>
<div class="container-fluid header_container">
<div class="container-fluid ">
<div class="row row align-items-center text-center" id="UpperPortion">
<div class="col-lg-8">
<img src="images/Events.PNG" class="img-fluid">
</div>
<div class="col-lg-4 d-flex ">
<div class="container ">
<br class="d-none d-lg-block">
<br class="d-none d-lg-block">
<div class ="row text-box ">
<div class="col-lg-12 animated lightSpeedIn delay-1s">
<h1>Technology Events</h1>
<hr>
<p class=""><em>Promoting Unity @ Georgia State<br></em></p>
<p>PantherHackers is committed to exposing students to a variety of events across campus, including events that are not PantherHackers sponsored. Below you will find an array of events and clubs. Feel free to use the filters to find some events you are interested in.</p>
</div>
</div>
<div class ="row text-box">
<div class="col-lg-12 animated lightSpeedIn delay-1s">
<h1 class="PantherHackersTitle">Want to Join the List?</h1>
<hr>
<br>
<p>Shoot us a message at one of our socials. Make sure you include information about your club and the event.</p> <br><br>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<main class="main-area">
<nav id="filter" class="filters">
<h1 class="text-center" style="font-family: 'Unica One', Cursive;">Filters</h3>
<hr class="my-4">
<br>
<h3 class="filter-title">Club Name</h3>
<br>
<ul class="filter-list" data-filter-group="club">
<li><a href="javascript:void(0)" data-filter=".pantherhackers">PantherHackers</a></li>
<li><a href="javascript:void(0)" data-filter=".girls">Girls++</a></li>
<li><a href="javascript:void(0)" data-filter=".iee">IEEE</a></li>
<li><a href="javascript:void(0)" data-filter=".girlswhocode">Girls Who Code</a></li>
<li><a href="javascript:void(0)" data-filter=".csclub">CS Club</a></li>
<li><a href="javascript:void(0)" data-filter=".acm">ACM</a></li>
<li><a href="javascript:void(0)" data-filter=".wit">WIT</a></li>
<li><a href="javascript:void(0)" data-filter=".issa">ISSA</a></li>
<li><a href="javascript:void(0)" data-filter=".auroragamedevelopment">Aurora Game Development</a></li>
</ul><!-- .subject -->
<br>
<h3 class="filter-title">Event Type</h3>
<br>
<ul class="filter-list" data-filter-group="type">
<li><a href="javascript:void(0)" data-filter=".workshop">Workshop</a></li>
<li><a href="javascript:void(0)" data-filter=".speaker">Speaker</a></li>
<li><a href="javascript:void(0)" data-filter=".generalbodymeeting">General Body Meeting</a></li>
<li><a href="javascript:void(0)" data-filter=".election">Election</a></li>
<li><a href="javascript:void(0)" data-filter=".conference">Conference</a></li>
<li><a href="javascript:void(0)" data-filter=".party">Party</a></li>
<li><a href="javascript:void(0)" data-filter=".panel">Panel</a></li>
</ul>
<br>
<h3 class="filter-title">Filter by Day</h3>
<br>
<ul class="filter-list" data-filter-group="author">
<li><a href="javascript:void(0)" data-filter=".monday">Monday</a></li>
<li><a href="javascript:void(0)" data-filter=".tuesday">Tuesday</a></li>
<li><a href="javascript:void(0)" data-filter=".wednesday">Wednesday</a></li>
<li><a href="javascript:void(0)" data-filter=".thursday">Thursday</a></li>
<li><a href="javascript:void(0)" data-filter=".friday">Friday</a></li>
</ul>
</nav><!-- .filters -->
<br>
<!--
<section class="courses">
<br>
<div class="card mb-3 course pantherhackers monday tuesday wednesday thursday friday">
<div class="card-image-cap">
<img src="images/Large Logo.png" alt="" class="img-fluid">
</div>
<div class="card-body">
<strong>Invasion 8/26-8/30</strong>
<p>
PantherHacks is hosting an invasion. Starting 8/26-8/30, PantherHackers will be in a classroom near you. <br><br>
</p>
</div>
</div>
</div>
-->
<!--
<div class="card mb-3 course tuesday girls wit girlswhocode panel">
<div class="card-image-cap">
<img src="images/Large Logo.png" alt="" class="img-fluid">
</div>
<div class="card-body">
<strong>
Deloitte Career Panel 9/3
</strong>
<p>
PantherHackers and Girls++ present a Deloitte career panel. This event will focus on answering questions about consulting careers in tech.
<br>
</p>
</div>
</div>
</div>
-->
<!--
<div class="card mb-3 course pantherhackers wit girls girlswhocode csclub issa acm iee auroragamedevelopment thursday">
<div class="card-image-cap">
<img src="images/Large Logo.png" alt="" class="img-fluid">
</div>
<div class="card-body">
<strong>
CIS/CS Student Org Fair 9/5
</strong>
<p>
Pantherhackers in conjunction with several CIS/CS clubs, is hosting a fair. From 12:30-4:30, come out and see all the CS/CIS clubs on campus. Food and drinks will be served.
</p>
</div>
</div>
</div>
-->
<!--
<div class="card mb-3 course pantherhackers thursday">
<div class="card-image-cap">
<img src="images/Large Logo.png" alt="" class="img-fluid">
</div>
<div class="card-body">
<strong>
PantherHackers Drone Event 9/26
</strong>
<p>
Pantherhackers is hosting a drone event.
</p>
</div>
</div>
-->
</section>
</div>
</main>
<br>
<br>
<footer class="footer">
<div class="container">
<p>© PantherHackers | Socials:
<a href="https://twitter.com/pantherhackers?lang=en" class="fa fa-twitter " style="color:white;"></a>
<a href="https://join.slack.com/t/pantherhackers/shared_invite/enQtNTgzMzU2MDI2MzczLTFhZjgxNWY5MTI2NWYzMTVmOTJiMTBlODIxNWJmODdiOWY1NTBhYWQwZmFiMWE0NWRlZDEyMDM2MmEwYzQwOTQ" class="fa fa-slack" style="color:white;"></a>
<a href="https://www.instagram.com/pantherhackers/" class="fa fa-instagram " style="color:white;"></a>
<a href ="https://www.linkedin.com/company/12177373" class="fa fa-linkedin " style="color:white;"></a>
<a href="https://www.facebook.com/PantherHackers/" class="fa fa-facebook " style="color:white;"></a></p>
</div>
</footer>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<script src="js/isotope.settings.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>