-
Notifications
You must be signed in to change notification settings - Fork 0
/
travel.php
143 lines (109 loc) · 5.6 KB
/
travel.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
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
<!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>HackCU Travel</title>
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Muli" rel="stylesheet">
<!-- Plugin CSS -->
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="bower_components/simple-line-icons/css/simple-line-icons.css">
<!-- Theme & Custom CSS -->
<link href="css/styles.css" rel="stylesheet">
<link href="css/new-age.css" rel="stylesheet">
</head>
<body id="page-top" ng-app="hackcu2017" style="background-color: #220B0D;">
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
<?php include('sections/navbar.php'); ?>
</nav>
<div class="container text-center largeMar travelContainer" id="travel">
<div class="row travelQuestion">
<div class="col-md-6 col-md-offset-3 col-sm-12" style="margin-top: 10em;">
<h1>HackCU 2017 Travel</h1>
<p class="smallMar">How do you get to HackCU?</p>
</div>
</div>
<!-- <p class="smallMar">April 8<sup>th</sup> to April 9<sup>th</sup> 2017</p>-->
<!-- <p>University of Colorado Boulder</p>-->
<div class="row largeMar">
<div class="col-lg-4">
<h2>Location and Parking</h2>
<p>The main event will be located in the Wolf Law building at:</p>
<b>2450 Kittredge Loop Dr.
<br>Boulder, CO 80305</b></p>
<p>Parking will be available in the parking lot outside of Wolf Law on Kittredge Loop Dr. Be sure to follow
directions on the signs to make sure you are not in permit only parking.</p>
</div>
<div class="col-lg-4">
<h2>Coming From the Airport</h2>
<p>There is a bus, the RTD AB line, that runs from the airport to our university campus. Find the bus schedule and fares <a href="http://www3.rtd-denver.com/schedules/getSchedule.action?routeId=AB" target="_blank">here</a>. Get off at the Baseline and
Broadway stop, and follow the route from the bus stop to the Wolf Law building just 4 minutes away.</p>
<img src="images/map.png" style="width: 60%;"/><br><br>
<p>If you take an Uber or Lyft from DIA (Denver International Airport), save your receipt to be used for
your travel reimbursement if you were approved.</p>
</div>
<div class="col-lg-4">
<h2>Grant Amounts</h2>
<p>If you are traveling farther than 25 miles from the University of Colorado Boulder, you are eligible for
travel reimbursement. To receive reimbursement, you must:</p>
<ol>
<li>RSVP to the link via email.</li>
<li>Be approved by the HackCU admin team for reimbursement. You will receive an email.</li>
<li>Provide receipts to the travel reimbursement form provided.</li>
<li>Submit a project to Devpost at the end of the hackathon.</li>
</ol>
</div>
</div>
<div class="row largeMar">
<div class="col-lg-4">
<h2>Flights</h2>
<p>We will be offering flight reimbursements on a first come first serve basis with the amount reimbursed
affected by distance traveled. Once approved by our admin team via email, you will
be required to submit travel receipts on our travel reimbursement form. Your entire flight
may or may not be covered by reimbursements.</p>
</div>
<div class="col-lg-4">
<h2>International Travel</h2>
<p>We love international participants! Unfortunately, HackCU cannot provide assistance for international
travel or visa paperwork. However, if you do make
it to HackCU, send us an email at contact[at]hackcu.org with the subject line: "International
Participant" and we can put in a request for reimbursement.</p>
</div>
<div class="col-lg-4">
<h2>Questions?</h2>
<p>Have any questions that were not answered here? Feel free to contact us <a href="contact.html">here</a>
or email us at [email protected].</p>
</div>
</div>
</div>
<footer>
<?php include('sections/footer.php'); ?>
</footer>
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Angular Core JavaScript -->
<script src="bower_components/angular/angular.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<!-- Theme JavaScript -->
<script src="js/new-age.js"></script>
<!-- Angular App JS -->
<script src="js/app.js"></script>
<!-- External JS -->
<script src="js/waypoints.min.js"></script>
<script src="js/jquery.counterup.min.js"></script>
</body>
</html>