forked from umbchackers/umbchackers.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·914 lines (791 loc) · 34.3 KB
/
index.html
File metadata and controls
executable file
·914 lines (791 loc) · 34.3 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
<!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">
<meta name="description" content="">
<meta name="author" content="">
<title>HACKUMBC FALL 2018</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Favicon settings set -->
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/manifest.json">
<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Theme CSS -->
<link href="js/particles.js">
<link href="js/app.js">
<link href="css/agency.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet"></link>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js" integrity="sha384-0s5Pv64cNZJieYFkXYOTId2HMA2Lfb6q2nAcx2n0RTLUnCAoTTsS0nKEO27XyKcY" crossorigin="anonymous"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js" integrity="sha384-ZoaMbDF+4LeFxg6WdScQ9nnR1QC2MIRxA1O9KWEXQwns1G8UNyIEZIQidzb0T1fo" crossorigin="anonymous"></script>
<![endif]-->
</head>
<body>
<!-- Navigation -->
<nav id="mainNav" class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top">FALL 2018</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#about">About</a>
</li>
<li>
<a class="page-scroll" href="#faq">FAQ</a>
</li>
<li>
<a class="page-scroll" href="#sponsors">Sponsors</a>
</li>
<li>
<a class="page-scroll" href="http://club.hackumbc.org/resources/" target="_blank">Resources</a>
</li>
<!-- <li>
<a class="page-scroll" href="https://widgets.scribblemaps.com/sm/?d&z&l&gc&af&mc&lat=39.256430262193305&lng=-76.71513308283386&vz=16&type=hybrid&ti&s&width=550&height=400&id=m6ddSbcEWj" target="_blank">Event Map</a>
</li> -->
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div id = "particles-js"></div>
<div id = "overlay" class="container">
<div class="intro-text">
<canvas id="bg"></canvas>
<img class="img-responsive" id="logodog" src="./img/logo.svg" width="30%"
alt="logo" />
<br /><br />
<div class="intro-heading">
HackUMBC
</div>
<div class="intro-heading">
<h1>October 20-21, 2018</h1>
<h2>
<button type="button" style="font-color: #BE4248" class="btn buttongroup" onclick=" window.open('http://register.hackumbc.org','_blank')">Register Now!</button>
</h2>
</div>
<div class="intro-heading">
<h1 style="text-transform: none">Interested in sponsoring us? Send us an email at
<a href="mailto:sponsor@hackumbc.org">sponsor@hackumbc.org</a><br></h1>
</div>
<!-- Social Media -->
<div class="intro-heading">
<div class="row">
<div class="col-md-12">
<ul class="list-inline social-buttons">
<li><a target="_blank" href="https://www.facebook.com/hackumbc"><i class="fa fa-facebook"></i></a>
</li>
<li><a target="_blank" href="https://twitter.com/hackumbc"><i class="fa fa-twitter"></i></a>
</li>
<li><a target="_blank" href="https://github.com/umbchackers"><i class="fa fa-github"></i></a>
</li>
<li><a target="_blank" href="https://www.instagram.com/hackumbc/"><i class="fa fa-instagram"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<a id="mlh-trust-badge" style="display:block;max-width:100px;min-width:60px;position:fixed;right:5%;top:8%;width:10%;z-index:10000" href="https://mlh.io/seasons/na-2018/events?utm_source=na-2018&utm_medium=TrustBadge&utm_campaign=na-2018&utm_content=blue" target="_blank">
<img src="https://s3.amazonaws.com/logged-assets/trust-badge/2018/blue.svg" alt="Major League Hacking 2017 Hackathon Season" style="width:100%"></a>
</div>
</header>
<!-- Portfolio Grid Section -->
<!-- <section id="schedule" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-8 text-center">
<h2 class="section-heading">Schedule</h2>
</br>
<h3>Saturday</h3>
<table class="table table-striped">
<thead>
<tr>
<th class="text-center" width="33%">Time</th>
<th class="text-center" width="33%">Event</th>
<th class="text-center" width="33%">Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>10:00 AM</td>
<td><b>Check-In!</b></td>
<td>ENG</td>
</tr>
<tr>
<td>11:00 AM</td>
<td>Opening Ceremony</td>
<td>ENG 027</td>
</tr>
<tr>
<td>12:00 PM</td>
<td>Lunch</td>
<td>ENG Atrium</td>
</tr>
<tr>
<td>12:30 PM</td>
<td>Team Formation</td>
<td>ENG 027</td>
</tr>
<tr>
<td>1:00 PM</td>
<td><b>Hacking Begins!</b></td>
<td>ENG</td>
</tr>
<tr>
<td></td>
<td>Hackathon101/</br>Programming Mindset Workshop</td>
<td>ENG 027</td>
</tr>
<tr>
<td></td>
<td>Introduction to Web Development</td>
<td>ENG 022</td>
</tr>
<tr>
<td></td>
<td>IEEE: Intro to Arduino</td>
<td>ENG 122</td>
</tr>
<tr>
<td>2:00 PM</td>
<td>Booz Allen Hamilton: </br>An Introduction to Visualizing Data using D3.js</td>
<td>ENG 027</td>
</tr>
<tr>
<td>3:15 PM</td>
<td>Freedom Consulting: </br>Intro to Git/Tackling the Technical Interview</td>
<td>ENG 027</td>
</tr>
<tr>
<td>4:30 PM</td>
<td>Introduction to Web Development Part 2</td>
<td>ENG 027</td>
</tr>
<tr>
<td></td>
<td>Learning JavaScript by Making a Chat Bot</td>
<td>ENG 022</td>
</tr>
<tr>
<td>5:15 PM</td>
<td>Cupstacking</td>
<td>ENG Atrium</td>
</tr>
<tr>
<td>6:00 PM</td>
<td>Dinner</td>
<td>ENG Atrium</td>
</tr>
<tr>
<td>7:00 PM</td>
<td>Clear Edge: </br>Becoming a Better Developer</td>
<td>ENG 027</td>
</tr>
<tr>
<td>8:15 PM</td>
<td>Dog Collar Comedy</td>
<td>ENG 027</td>
</tr>
<tr>
<td>9:00 PM</td>
<td>Trivia</td>
<td>ENG 027</td>
</tr>
</tbody>
</table>
<h3>Sunday</h3>
<table class="table table-striped text-center">
<thead>
<tr>
<th class="text-center" width="33%">Time</th>
<th class="text-center" width="33%">Event</th>
<th class="text-center" width="33%">Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>12:00 AM</td>
<td>Midnight Snacks</td>
<td>ENG Atrium</td>
</tr>
<tr>
<td>8:30 AM</td>
<td>Breakfast</td>
<td>ENG Atrium</td>
</tr>
<tr>
<td>11:30 AM</td>
<td><b>Submit Hacks!</b></td>
<td>ENG</td>
</tr>
<tr>
<td>1:00 PM</td>
<td><b>Hacking Ends!</b></td>
<td>ENG</td>
</tr>
<tr>
<td>1:00 PM</td>
<td>Lunch</td>
<td>ENG Atrium</td>
</tr>
<tr>
<td>1:30 PM</td>
<td><b>Expo Begins!</b></td>
<td>ENG Atrium</td>
</tr>
<tr>
<td>3:30 PM</td>
<td>Closing Ceremonies</td>
<td>ENG 027</td>
</tr>
</tbody>
</table> -->
<!-- </div> -->
<!-- </div> -->
<!-- <br>
<div class="row col-lg-12 text-center">
<h2 class="section-heading">Hacking Rooms</h2>
<h3 class="section-heading">
Atrium, 005B, 022, 122, 021, 027, 122A, 021A, 104, 333, 104A, 336
</h3>
</div>
</div>
</div>
</section> -->
<!-- Services Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">About</h2>
</div>
</div>
<div class="row text-center">
<div class="col-lg-12 section-text">
The University of Maryland, Baltimore County’s 24-hour tech innovation marathon where students across the East Coast collaborate on new ideas to build mobile, web and hardware projects. HackUMBC invites diverse groups of students to enjoy a weekend of hacking, workshops, tech talks, networking, and other fun activities. At the end of 24 hours, participants’ projects are presented and judged for different prize categories from sponsors and other organizations.
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="faq" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Frequently Asked Questions</h2>
<div class="container">
</div>
<div class="row bottom30">
<div class="col-md-2">
</div>
<div class="col-md-8">
<hr>
</div>
<div class="col-md-2">
</div>
</div>
<div class="row bottom30">
<div class="col-md-4 col-md-offset-2">
<h3>
What is a hackathon?
</h3>
<p>
A hackathon is a tech innovation marathon. This is where
your dreams run wild. Solve a real-world problem with
technology or build the next Iron Man suit.
</p>
</div>
<div class="col-md-4">
<h3>
What if I don't have a team or an idea?
</h3>
<p>
No problem! You can find a team once you arrive. Most
hackers arrive without a team. You will often find
inspiration for ideas at the hackathon.
</p>
</div>
</div>
<div class="row bottom30">
<div class="col-md-4 col-md-offset-2">
<h3>
What if I don't code?
</h3>
<p>
This is the perfect opportunity to learn something new!
There will be workshops geared towards beginners and mentors
to help you throughout the event.
</p>
</div>
<div class="col-md-4">
<h3>
Who can attend?
</h3>
<p>
Current undergraduate students can compete. High school students who are juniors or seniors are also eligible. Anyone is welcome to drop by and see what participants are working on!
</p>
</div>
</div>
<div class="row bottom30">
<div class="col-md-4 col-md-offset-2">
<h3>
What can I build?
</h3>
<p>
Anything! Web, mobile, desktop, and hardware projects are
all welcome. Projects will be judged based on creativity,
technical difficulty, polish, and usefulness.
</p>
</div>
<div class="col-md-4">
<h3>
Will there be hardware?
</h3>
<p>
We have partnered with MLH to provide hardware hacking
resources to all hackers.
<a target="_blank" href="https://mlh.io/hardware-lab">
Check out the full list of hardware.
</a>
</p>
</div>
</div>
<div class="row bottom30">
<div class="col-md-4 col-md-offset-2">
<h3>
How much does it cost?
</h3>
<p>
HackUMBC is free! Food, beverages, swag, and workspaces will be provided. You just have to travel to
the event and we will take care of the rest! :)
</p>
</div>
<div class="col-md-4">
<h3>
What should I bring?
</h3>
<p>
Valid photo ID is required. (State issued ID is highly recommended.) Laptops, sleeping bags, and
toiletries are highly recommended.
</p>
</div>
</div>
<div class="row bottom30">
<div class="col-md-4 col-md-offset-2">
<h3>
How big should teams be? Can I hack alone?
</h3>
<p>
Teams should be at most <b>FOUR</b> people. We highly recommend
that you form a team, but solo hackers are allowed.
</p>
</div>
<div class="col-md-4">
<h3>
Can I build on past projects?
</h3>
<p>
We strongly discourage building off of existing projects
you've worked on. However, using third–party APIs and
libraries are encouraged, as long as they're accessible by
everyone.
</p>
</div>
</div>
<div class="row bottom30">
<div class="col-md-4 col-md-offset-2">
<h3>
Will there be travel reimbursement?
</h3>
<p>
At this time we will <b>NOT</b> be able to provide travel reimbursement to hackers due to shortage of funds. However, we <b>WILL</b> be able to
provide busing to <b>University of Maryland, College Park</b> this semester so watch out for that.
</p>
</div>
<div class="col-md-4 ">
<h3>
Do I have to sleep over at the hackathon?
</h3>
<p>
You are always able to come and go at the hackathon but only work done at the venue will be eligible for judging.
You are also welcome to bring a sleeping bag but we will not have a designated area for sleeping.
</p>
</div>
</div>
<div class="row bottom30">
<div class="col-md-4 col-md-offset-2">
<h3>
Is there a code of conduct?
</h3>
<p>
<a target="_blank" href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf">
Yes.
</a>
Be nice to others.
</p>
</div>
<div class="col-md-4">
<h3>
I have more questions!
</h3>
<p>
You can get in touch with us via
<a href="mailto:team@hackumbc.org">
email</a>,
<a target="_blank" href="https://twitter.com/hackumbc">
Twitter</a>,
or
<a target="_blank" href="https://www.facebook.com/hackumbc">
Facebook</a>.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section id="sponsors">
<div class="container">
<div class = "row">
<div class="col-xs-12 text-center" style="padding-bottom: 5px;">
<h2 class="section-heading">Sponsors</h2>
</div>
</div>
<!-- Seciton 1 -->
<div class = "row">
<div class = "col-sm-3">
</br>
</br>
<a href="https://www.boozallen.com/" target="_blank"><img src = "img/sponsors/s18/BAH.png" class = "img-responsive bottom30" alt = "Booz Allen Hamilton"></a>
</div>
<div class = "col-sm-3">
</br>
</br>
<a href="http://clearedgeit.com/" target="_blank"><img src = "img/sponsors/f17/gold/clearedge.png" class = "img-responsive bottom30" alt = "Clear Edge"></a>
</div>
<div class = "col-sm-3">
</br>
<a href="https://freedomconsultinggroup.com/" target="_blank">
<img src="img/sponsors/s18/freedom-cg.png" class="img-responsive bottom30" alt="Freedom Consulting Group">
</a>
</div>
<div class = "col-sm-3">
<a href="http://www.jhuapl.edu/" target="_blank">
<img src="img/sponsors/f17/silver/APL/JHU_APL.png" width="70%" class="img-responsive bottom30" alt="JHU APL">
</a>
</div>
</div>
</br>
</br>
<!-- Section 2 -->
<div class = "row">
<div class = "col-sm-3">
</div>
<div class = "col-sm-2">
<a href="https://entrepreneurship.umbc.edu/" target="_blank"><img src = "img/sponsors/s18/AlexBrown.jpg" class = "img-responsive bottom30" alt = "Alex Brown Center for Entrepeneurship"></a>
</div>
<div class = "col-sm-2">
</div>
<div class = "col-sm-2">
<a href="https://www.paypal.com/us/home" target="_blank"> <img src = "img/sponsors/s18/paypal.png" class = "img-responsive bottom30" alt = "Paypal"></a>
</div>
<div class = "col-sm-3">
</div>
</div>
<div class = "row">
<div class="col-xs-12 text-center" style="padding-bottom: 5px;">
<h2 class="section-heading">Partners</h2>
</div>
</div>
<!-- Section 3 -->
<div class = "row">
<div class="col-sm-2"></div>
<div class = "col-sm-2">
</br>
<a href="http://mlh.io" target="_blank">
<img src="img/partners/mlh-logo-grayscale.png" class="img-responsive bottom30" alt="MLH">
</a>
</div>
<div class = "col-sm-2">
</br>
</br>
<a href="http://hackp.ac/mlh-stickermule-hackathons" target="_blank">
<img src = "img/sponsors/s18/stickermule.png" class = "img-responsive bottom30" alt = "Stickermule">
</a>
</div>
<div class = "col-sm-2">
</br>
<a href="http://github.com/" target="_blank">
<img src = "img/sponsors/s18/github.png" class = "img-responsive bottom30" alt = "Github">
</a>
</div>
<div class = "col-sm-2">
<a href="https://www.soylent.com/" target="_blank">
<img src="img/sponsors/s18/soylent.png" class="img-responsive bottom30" alt="Soylent">
</a>
</div>
<div class="col-sm-2"></div>
</div>
<div class="row">
<div class = "col-sm-2"></div>
<div class = "col-sm-2">
</br>
</br>
<a href="https://www.monsterenergy.com/" target="_blank">
<img src="img/sponsors/s18/monster.png" class="img-responsive bottom30" alt="Monster Energy">
</a>
</div>
<div class = "col-sm-2">
<a href="https://insomniacookies.com/" target="_blank">
<img src="img/sponsors/s18/insomnia.png" class="img-responsive bottom30" alt="Insomnia Cookies">
</a>
</div>
<div class = "col-sm-2">
<a href="http://www.ceremonycoffee.com/" target="_blank">
</br>
</br>
</br>
<img src="img/partners/ceremony_logo.png" class="img-responsive bottom30" alt="Ceremony Coffee">
</a>
</div>
<div class = "col-sm-2">
</br>
<a href="https://cloud.google.com/" target="_blank">
<img src="img/sponsors/s18/google.png" class="img-responsive bottom30" alt="Google Cloud Platform">
</a>
</div>
</div>
<!-- Section 3
<div class = "row">
<div class = "col-sm-2">
</div>
<div class = "col-sm-2">
</div>
<div class = "col-sm-2">
</div>
<div class = "col-sm-2">
</div>
<div class = "col-sm-2">
</div>
</div>
<div class = "row">
<div class = "col-sm-2">
</br>
</br>
</div>
<div class = "col-sm-2">
</div>
<div class = "col-sm-2">
</div>
<div class = "col-sm-2">
</div>
<div class = "col-sm-2">
</div>
</div>-->
<div class="row">
<div class="col-xs-12"><br /></div>
<div class="col-xs-12 text-center">
<div class="slightly-bigger-font">
Interested in sponsoring us? Send us an email at
<a href="mailto:sponsor@hackumbc.org">sponsor@hackumbc.org</a>.<br />
</div>
</div>
</div>
</section>
<!-- Clients Aside -->
<!--
<aside class="clients">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<a href="#">
<img src="img/sponsors/f17/gold/clearedge.png" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="#">
<img src="img/sponsors/f17/gold/clearedge.png" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="#">
<img src="img/sponsors/f17/gold/clearedge.png" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="#">
<img src="img/sponsors/f17/gold/clearedge.png" class="img-responsive img-centered" alt="">
</a>
</div>
</div>
</div>
</aside>
-->
<!-- Contact Section -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-12">
<span class="copyright">Copyright © HACKUMBC 2018</span>
</div>
</div>
<div class="row">
<div class="col-md-12">
<ul class="list-inline social-buttons">
<li><a target="_blank" href="https://www.facebook.com/hackumbc"><i class="fa fa-facebook"></i></a>
</li>
<li><a target="_blank" href="https://twitter.com/hackumbc"><i class="fa fa-twitter"></i></a>
</li>
<li><a target="_blank" href="https://github.com/umbchackers"><i class="fa fa-github"></i></a>
</li>
<li><a target="_blank" href="https://www.instagram.com/hackumbc/"><i class="fa fa-instagram"></i></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" integrity="sha384-mE6eXfrb8jxl0rzJDBRanYqgBxtJ6Unn4/1F7q4xRRyIw7Vdg9jP4ycT7x1iVsgb" crossorigin="anonymous"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Theme JavaScript -->
<script src="js/agency.min.js"></script>
<script src="js/particles.js"></script>
<script src="js/app.js"></script>
<!--<script>
"use strict";
// background animation
(function() {
var Base, Particle, canvas, colors, context, draw, drawables, i, mouseX, mouseY, mouseVX, mouseVY, rand, update, click, min, max, colors, particles;
min = 1;
max = 8;
particles = 200;
colors = ["75, 156, 211", "0, 0, 200, .5", "0, 255, 200", "150,150, 150"];
rand = function(a, b) {
return Math.random() * (b - a) + a;
};
Particle = (function() {
function Particle() {
this.reset();
}
Particle.prototype.reset = function() {
this.color = colors[~~(Math.random()*colors.length)];
this.radius = rand(min, max);
this.x = rand(0, canvas.width);
this.y = rand(-20, canvas.height*0.5);
this.vx = -5 + Math.random()*10;
this.vy = 0.7 * this.radius;
this.valpha = rand(0.02, 0.09);
this.opacity = 0;
this.life = 0;
this.onupdate = undefined;
this.type = "dust";
};
Particle.prototype.update = function() {
this.x = (this.x + this.vx/3);
this.y = (this.y + this.vy/3);
if(this.opacity >=1 && this.valpha > 0) this.valpha *=-1;
this.opacity += this.valpha/3;
this.life += this.valpha/3;
if(this.type === "dust")
this.opacity = Math.min(1, Math.max(0, this.opacity));
else
this.opacity = 1;
if(this.onupdate) this.onupdate();
if(this.life < 0 || this.radius <= 0 || this.y > canvas.height){
this.onupdate = undefined;
this.reset();
}
};
Particle.prototype.draw = function(c) {
c.strokeStyle = "rgba(" + this.color + ", " + Math.min(this.opacity, 0.85) + ")";
c.fillStyle = "rgba(" + this.color + ", " + Math.min(this.opacity, 0.65) + ")";
c.beginPath();
c.arc(this.x, this.y, this.radius, 2 * Math.PI, false);
c.fill();
c.stroke();
};
return Particle;
})();
mouseVX = mouseVY = mouseX = mouseY = 0;
canvas = document.getElementById("bg");
context = canvas.getContext("2d");
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
drawables = (function() {
var _i, _results;
_results = [];
for (i = _i = 1; _i <= particles; i = ++_i) {
_results.push(new Particle);
}
return _results;
})();
draw = function() {
var d, _i, _len;
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
context.clearRect(0, 0, canvas.width, canvas.height)
for (_i = 0, _len = drawables.length; _i < _len; _i++) {
d = drawables[_i];
d.draw(context);
}
};
update = function() {
var d, _i, _len, _results;
_results = [];
for (_i = 0, _len = drawables.length; _i < _len; _i++) {
d = drawables[_i];
_results.push(d.update());
}
return _results;
};
document.onmousemove = function(e) {
mouseVX = mouseX;
mouseVY = mouseY;
mouseX = ~~e.pageX;
mouseY = ~~e.pageY;
mouseVX = ~~((mouseVX - mouseX)/2);
mouseVY = ~~((mouseVY - mouseY)/2);
};
window.addEventListener('resize', draw, false);
setInterval(draw, 1000 / 30);
setInterval(update, 1000 / 60);
}).call(this);
</script>-->
</body>
</html>