forked from connorgladish/DevHawksWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
595 lines (566 loc) · 23.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/images/logos/transpdh.png" type="image/png" />
<title>DevHawksUTM</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/lightgallery-js/1.4.0/css/lightgallery.min.css"
/>
<link
rel="stylesheet"
href="https://unpkg.com/swiper@7/swiper-bundle.min.css"
/>
<!-- Include the Lightbox CSS file -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.min.css">
<!-- Include jQuery (required for Lightbox) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Include the Lightbox JS file -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/js/lightbox.min.js"></script>
<!-- custom css file link -->
<link rel="stylesheet" href="/public/main/css/style.css" />
</head>
<body>
<!-- header section starts -->
<!-- Work in Progress Notification -->
<div id="work-in-progress-popup" class="popup">
<div class="popup-content">
<span id="close-popup" class="close-btn">×</span>
<p><b>PLEASE KEEP IN MIND: <br><br>THIS SITE IS A
<u>WORK IN PROGRESS</u> FROM ONE DEVELOPER. <br>THERE WILL BE BUGS,
AND IT IS NOT IN ITS FINAL STATE.<br> <br>THANK YOU!<br><br> - CJ</b></p>
</div>
</div>
<header class="header">
<a href="#" class="logo">
<img src="/images/logos/transpdh.png" alt="Logo" class="logo-img">
<span class="logo-text">Dev </span><span class="logo-link"> Hawks</span>
</a>
<nav class="navbar">
<a href="#home">home</a>
<a href="#about">about</a>
<a href="#events">our Events</a>
<a href="#environments">Our Environment</a>
<a href="/public/museum/construction.png">museum</a>
<a href="#contact">contact</a>
</nav>
<div class="icons">
<div id="menu-btn" class="fas fa-bars"></div>
<div id="info-btn" class="fas fa-info-circle"></div>
<button id="dark-mode-toggle" class="toggle-button">
<i class="fa fa-moon-o"></i>
</button>
</button>
</div>
</header>
<div class="contact-info">
<div id="close-contact-info" class="fas fa-times"></div>
<div class="info">
<i class="fas fa-envelope"></i>
<h3>email address</h3>
<p>[email protected]</p>
</div>
<div class="info">
<i class="fas fa-map-marker-alt"></i>
<h3>meeting location</h3>
<p>Latimer-Smith Engineering Building - Room 102</p>
</div>
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="https://www.instagram.com/devhawksutm/" class="fab fa-instagram"></a>
<a href="#" class="fab fa-youtube"></a>
</div>
</div>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="swiper home-slider">
<div class="swiper-wrapper">
<section
class="swiper-slide slide"
style="background: url(/images/sliders/groupdh.jpg) no-repeat"
>
<div class="content">
<h3>Collaborate with like minded individuals.</h3>
<p style="color: #e26b0a;">
<b>Grow your knowledge outside of the classroom by engaging with your fellow peers!</b>
</p>
<a href="#about" class="btn">learn more</a>
</div>
</section>
<section
class="swiper-slide slide"
style="background: url(/images/sliders/lockpick.jpg) no-repeat"
>
<div class="content">
<h3>Immerse yourself in learning.</h3>
<p style="color: #e26b0a;">
<b>Gain useful, hands-on experience through club projects, competitions, and more.</b>
</p>
<a href="#about" class="btn">Learn More</a>
</div>
</section>
<section
class="swiper-slide slide"
style="background: url(/images/sliders/latimerstairs.jpg) no-repeat"
>
<div class="content">
<h3>Grow with us.</h3>
<p style="color: #e26b0a;">
<b>Our club is relatively new, help us grow and become something great at UTM!
</b>
</p>
<a href="#about" class="btn">Learn More</a>
</div>
</section>
<section
class="swiper-slide slide"
style="background: url(/images/sliders/DHLogoWhiteBackgroundAlt.png) no-repeat"
>
<div class="content">
<h3>Advance your Computer Science knowledge.</h3>
<p style="color: #e26b0a;">
<b>At Dev Hawks, we strive to advance our club members' knowledge and capabilities,
hoping to give them a leading edge in today's competitive career fields.
</b>
</p>
<a href="#about" class="btn">Learn More</a>
</div>
</section>
<section
class="swiper-slide slide"
style="background: url(/images/sliders/latimeraesth.jpg) no-repeat"
>
<div class="content">
<h3>State of the art facilities, state of the art club.</h3>
<p style="color: #e26b0a;">
<b>Utilizing our extensive resources for the advancement of UTM students!</b>
</p>
<a href="#about" class="btn">Learn More</a>
</div>
</section>
<section
class="swiper-slide slide"
style="background: url(/images/sliders/programcomp.jpg) no-repeat"
>
<div class="content">
<h3>Build Connections.</h3>
<p style="color: #e26b0a;">
<b>Meet other students with an interest is programming and tech. Collaborate and compete together!</b>
</p>
<a href="#about" class="btn">Learn More</a>
</div>
</section>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</section>
<!-- home section ends -->
<!-- about section starts -->
<section class="about" id="about">
<h1 class= "heading"> about us </h1>
<div class="row">
<div class="video">
<video src="/images/misc/LatimerSmith_0.mp4" loop muted autoplay></video>
</div>
<div class="content">
<h3>Here at the University of Tennessee at Martin, we strive for excellence.</h3>
<p>
Dev Hawks facilitates students who are willing to strive for <b>more.</b>
</p>
<p>
At Dev Hawks, our mission is simple: Help prepare UTM students to enter and work in the tech industry.
Today’s technological career fields, such as software development, are becoming more and more competitive.
While a degree in computer science or other S.T.E.M fields are a beneficial asset when it comes to job hunting,
your personal set of skills can be just as equally important.
<b>Our club strives to help its members grow their set of skills through fun and engaging activities.</b>
</p>
<p>
We strongly advocate for our members to work together on projects and to share their skills and knowledge.
Development in the industry is often the result of collaborative work - multiple developers working together.
Thus, collaboration and communication are crucial skills to have.
Take the knowledge you’ve gained from your classes here at UTM, (or on your own!),
and learn how to apply that knowledge to various programming languages, tools, and other aspects of development!
</p>
</div>
</div>
<div class="box-container">
<div class="box">
<h3>Fun</h3>
<p>Game Nights!</p>
</div>
<div class="box">
<h3>Competitive</h3>
<p>Projects and Events!</p>
</div>
<div class="box">
<h3>6</h3>
<p>Outgoing Student Officers!</p>
</div>
<div class="box">
<h3>30+</h3>
<p>Active Members in the Club!</p>
</div>
</div>
<br><br>
<h1>*Upcoming events and meeting times can be found on our UTM Runway Page:</h1>
<a class="btn" href="https://runway.utm.edu/organization/devhawks">Our UTM Runway</a>
</section>
<!-- about section ends -->
<!-- events section starts -->
<section class="events" id="events">
<h1 class="heading">Our Events</h1>
<div class="box-container">
<div class="box">
<img src="/images/thumbnails/hackathon.png" alt="Hackathons" />
<h3>Hackathons</h3>
<p>
</p>
</div>
<div class="box">
<img src="/images/thumbnails/programming.png" alt="Programming Competitions" />
<h3>Programming Competitions</h3>
<p>
</p>
</div>
<div class="box">
<img src="/images/thumbnails/ctf.png" alt="Capture the Flag" />
<h3>Capture the Flag</h3>
<p>
</p>
</div>
<div class="box">
<img src="/images/thumbnails/speaker.png" alt="Professional Guest Speakers" />
<h3>Professional Guest Speakers</h3>
<p>
</p>
</div>
<div class="box">
<img src="/images/thumbnails/social.png" alt="Social Events" />
<h3>Social Events</h3>
<p>
</p>
</div>
<div class="box">
<img src="/images/thumbnails/collab.png" alt="Collaborative Projects" />
<h3>Collaborative Projects</h3>
<p>
</p>
</div>
<div class="box">
<img src="/images/thumbnails/console.png" alt="Game Nights" />
<h3>Game Nights</h3>
<p>
</p>
</div>
<div class="box">
<img src="/images/thumbnails/homework.png" alt="Game Nights" />
<h3>Homework Help</h3>
<p>
</p>
</div>
</div>
</section>
<!-- events section ends -->
<!-- environments section starts -->
<section class="environments" id="environments">
<h1 class="heading">our environment</h1>
<div class="box-container">
<a href="/images/environments/cyberlab.jpg" class="box" data-lightbox="environment" data-title="">
<div class="image">
<img src="/images/environments/cyberlab.jpg" alt="" />
</div>
<div class="content">
<div class="info">
<h3>Cybersecurity Lab</h3>
<p>LS - 302</p>
</div>
<i class="fas fa-plus"></i>
</div>
</a>
<a href="/images/environments/complab.jpg" class="box" data-lightbox="environment" data-title="">
<div class="image">
<img src="/images/environments/complab.jpg" alt="" />
</div>
<div class="content">
<div class="info">
<h3>Comp. Sci. Lab</h3>
<p>LS - 300 Wing</p>
</div>
<i class="fas fa-plus"></i>
</div>
</a>
<a href="/images/environments/studylab.jpg" class="box" data-lightbox="environment" data-title="">
<div class="image">
<img src="/images/environments/studylab.jpg" alt="" />
</div>
<div class="content">
<div class="info">
<h3>STEM Study Area</h3>
<p>LS - 3rd Floor</p>
</div>
<i class="fas fa-plus"></i>
</div>
</a>
<a href="/images/environments/englab.jpg" class="box" data-lightbox="environment" data-title="">
<div class="image">
<img src="/images/environments/englab.jpg" alt="" />
</div>
<div class="content">
<div class="info">
<h3>Engineering Lab</h3>
<p>LS - First Floor</p>
</div>
<i class="fas fa-plus"></i>
</div>
</a>
</div>
</section>
<!-- environments section ends -->
<!-- Officers section starts -->
<section class="officers" id="officers">
<h1 class="heading">our Officers</h1>
<div class="box-container">
<a href="/images/headshots/qing.jpg" class="box" data-lightbox="officers" data-title="Dr. Qing Wang is an Associate Professor in
the Department of Computer Science, and Advisor to Dev Hawks at the University of Tennessee at Martin.">
<div class="image">
<img src="/images/headshots/qing.jpg" alt="" />
</div>
<div class="content">
<div class="info">
<h3>Dr. Qing Wang</h3>
<p>Advisor</p>
</div>
<i class="fas fa-plus"></i>
</div>
</a>
<a href="/images/headshots/cjheadshotalt.png" class="box" data-lightbox="officers" data-title="Co-Founder and President of Dev Hawks. Developer of Dev Hawks Website. Junior, Major in Cybersecurity.
1 year as IT Specialist I, Software Engineer at Discovery Park of America. 2x PEP Leader @ University of Tennessee - Martin. I also go by CJ. Talk to me about anything!">
<div class="image">
<img src="/images/headshots/cjheadshotalt.png" alt="" />
</div>
<div class="content">
<div class="info">
<h3>Connor Gladish</h3>
<p>Co-Founder, President</p>
</div>
<i class="fas fa-plus"></i>
</div>
</a>
<a href="/images/headshots/josiahheadshot.png" class="box" data-lightbox="officers" data-title="Co-Founder and Vice President of Dev Hawks. Sophomore, Major in Computer Science.
Supplemental Instructor for SOC 201 (FA 2024).">
<div class="image">
<img src="/images/headshots/josiahheadshot.png" alt="" />
</div>
<div class="content">
<div class="info">
<h3>Josiah Tripp</h3>
<p>Co-Founder, Vice President</p>
</div>
<i class="fas fa-plus"></i>
</div>
</a>
<a href="/images/headshots/loganheadshot.png" class="box" data-lightbox="officers" data-title="Director of Cyber Operations to Dev Hawks. Freshman, Major in Cybersecurity.
Glad to be a part of something great.">
<div class="image">
<img src="/images/headshots/loganheadshot.png" alt="" />
</div>
<div class="content">
<div class="info">
<h3>Logan Pittman</h3>
<p>Director of Cyber Operations</p>
</div>
<i class="fas fa-plus"></i>
</div>
</a>
<a href="/images/headshots/maddieheadshot.jpg" class="box" data-lightbox="officers" data-title="Treasurer of Dev Hawks. Sophomore, Major in Information Systems. :P">
<div class="image">
<img src="/images/headshots/maddieheadshot.jpg" alt="" />
</div>
<div class="content">
<div class="info">
<h3>Maddie Hardin</h3>
<p>Treasurer</p>
</div>
<i class="fas fa-plus"></i>
</div>
</a>
<a href="/images/headshots/frankheadshot.jpg" class="box" data-lightbox="officers" data-title="Secretary of Dev Hawks. Sophomore, Major in Computer Science. They call me Frank.">
<div class="image">
<img src="/images/headshots/frankheadshot.jpg" alt="" />
</div>
<div class="content">
<div class="info">
<h3>Dylan Pruitt</h3>
<p>Secretary</p>
</div>
<i class="fas fa-plus"></i>
</div>
</a>
<a href="/images/headshots/aaronheadshot.png" class="box" data-lightbox="officers" data-title="Social Media Ambassador of Dev Hawks. Sophomore, Major in Information Systems.">
<div class="image">
<img src="/images/headshots/aaronheadshot.png" alt="" />
</div>
<div class="content">
<div class="info">
<h3>Aaron Lawson</h3>
<p>Social Media Ambassador</p>
</div>
<i class="fas fa-plus"></i>
</div>
</a>
</div>
</section>
<!-- Officers section ends -->
<!-- reviews section starts -->
<section class="reviews">
<h1 class="heading">Club Feedback</h1>
<div class="swiper reviews-slider">
<div class="swiper-wrapper">
<div class="swiper-slide slide">
<p>
I think the President and Vice President did a great job of putting the club together and generating interest for it.
Though I was unable to attend all of the meetings, I was still able to see that a majority of the members were active and interested in the club's activities.
Even outside of the club space, everyone kept the Discord server active and most members played games together. Everyone always seemed to look forward to the next meeting.
I think there was an impressive amount of dedicated members that consistently showed up and brought the club to life, despite how new it is!
</p>
<div class="user">
<img src="/images/headshots/maddieheadshot.jpg" alt="" />
<div class="info">
<h3>Maddie Hardin</h3>
</div>
</div>
</div>
<div class="swiper-slide slide">
<p>
Founding Dev Hawks started as a way to get the Computer Science students engaged and to have the ability to learn outside of the classroom.
Quickly, I learned that it could be much more than that. Through Dev Hawks, I have seen many individuals break out of their shell,
learn something new, and even gain friends they might've never met otherwise. I truly think what our community has allowed us to build will change the
Computer Science Department at UTM forever, and I'm happy to be a part of that.
</p>
<div class="user">
<img src="/images/headshots/cjheadshot.png" alt="" />
<div class="info">
<h3>Connor Gladish</h3>
</div>
</div>
</div>
<div class="swiper-slide slide">
<p>
I really enjoy going to Dev Hawks meetings!
My favorite things we did this semester were the
game jams and the game nights, but every other
meeting was also engaging with members as well.
I would recommend anyone interested to definitely join!
</p>
<div class="user">
<img src="/images/headshots/dylandheadshot.png" alt="" />
<div class="info">
<h3>Dylan Daniels</h3>
</div>
</div>
</div>
<div class="swiper-slide slide">
<p>
Like the feedback? Want to be featured on here yourself?
Tell us something you liked about Dev Hawks by going to the <b>Contact</b> section and emailing us!
Be sure to include your name, and you can even submit your photo to be displayed here.
Note: Due to security reasons, the Contact Us doesn't work properly. Please contact the president with feedback. Thank you!
</p>
<div class="user">
<img src="/images/headshots/blankuser.jpeg" alt="" />
<div class="info">
<h3>Website Admin</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- reviews section ends -->
<!-- contact section starts -->
<section class="contact" id="contact">
<h1 class="heading">contact us</h1>
<div class="row">
<iframe
class="map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d81951.47795019013!2d-88.8503!3d36.3436!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x887c56b519ba5183%3A0x31a21e0b92aee87f!2sMartin%2C%20TN%2048307%2C%20USA!5e0!3m2!1sen!2sin!4v1641716772852!5m2!1sen!2sin"
allowfullscreen=""
loading="lazy"
></iframe>
<form id="contact-form" action="/lib/process_form.php" method="post">
<h3>Get in touch</h3>
<input type="text" placeholder="Name" class="box" id="name" name="name" required>
<input type="email" placeholder="Email" class="box" id="email" name="email" required>
<textarea placeholder="Message" class="box" id="message" name="message" cols="30" rows="10" required></textarea>
<input type="submit" value="Send Message" class="btn">
</form>
</div>
</section>
<!-- contact section ends -->
<!-- logo section starts -->
<section class="logo-container">
<div class="swiper logo-slider">
<div class="swiper-wrapper">
<div class="swiper-slide slide">
<img src="/images/logos/dcs.png" alt="" />
</div>
<div class="swiper-slide slide">
<img src="/images/logos/transpdh.png" alt="" />
</div>
<div class="swiper-slide slide">
<img src="/images/logos/dcs.png" alt="" />
</div>
<div class="swiper-slide slide">
<img src="/images/logos/transpdh.png" alt="" />
</div>
<div class="swiper-slide slide">
<img src="/images/logos/dcs.png" alt="" />
</div>
<div class="swiper-slide slide">
<img src="/images/logos/transpdh.png" alt="" />
</div>
</div>
</div>
</section>
<!-- client logo section ends -->
<!-- footer section starts -->
<section class="footer">
<div class="links">
<a class="btn" href="https://runway.utm.edu/organization/devhawks">Our UTM Runway</a>
<a class="btn" href="https://github.com/DevHawksUTM">Our Github</a>
<a class="btn" href="https://devhawksutm.itch.io/">Our Itch.io</a>
<a class="btn" href="https://discord.gg/NxN4nKCAHK">Our Discord</a>
<a class="btn" href="/images/misc/DevHawks_Bylaws_Spring23.pdf">Our Constitution/Bylaws</a>
<a class="btn" href="/images/misc/credit.html">Image Credits</a>
</div>
<div class="credit">
created by
<a href="https://github.com/connorgladish" target="_blank">
<span>Connor Gladish</span>
</a>
| all rights reserved!
</div>
</section>
<!-- footer section ends -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery-js/1.4.0/js/lightgallery.min.js"></script>
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<!-- custom js file link -->
<script src="/public/main/js/script.js"></script>
<script>
lightGallery(document.querySelector(".projects .box-container"));
</script>
</body>
</html>