-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy pathindex.html
More file actions
222 lines (212 loc) · 8.61 KB
/
index.html
File metadata and controls
222 lines (212 loc) · 8.61 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
<!DOCTYPE html>
<html lang="en" ng-app="hackalistApp">
<head>
<title>Hackalist</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="An archive of hackathons from around the world (2014-2025).">
<meta name="keywords" content="hackathon, hackathons, list, directory">
<!-- Start Google Javascript -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-51284668-3', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/skeleton.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body ng-controller="mainController">
<div ng-show="currentView == 'homepage'">
<div class="container">
<div class="row">
<div class="twelve columns">
<br> <a href="/"><img src="images/logo.png" alt="Hackalist" class="img-center"> </a><br>
</div>
</div>
<br>
<div class="row">
<div class="twelve columns">
<div class="text-center">
<p class="intro-text">
A directory of hackathons from around the world.
<br>
<em>
This site is no longer actively updated.
Thank you to everyone who contributed over the years!
</em>
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="twelve columns">
<h2 class="text-center">Browse Archive by Year</h2>
<div id="yearGrid">
<div class="row" ng-repeat="yearRow in yearRows">
<div class="three columns" ng-repeat="yearData in yearRow">
<a class="button year-button" ng-click="showYear(yearData.year)">
{{yearData.year}}
<span class="year-count" ng-if="yearData.count !== null">({{yearData.count}})</span>
<span class="year-count loading" ng-if="yearData.count === null">...</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div ng-show="currentView == 'year'">
<div class="container">
<div class="row">
<div class="twelve columns">
<br> <a ng-click="showDirectory()" class="logo-link"><img src="images/logo.png" alt="Hackalist" class="img-center"> </a><br>
</div>
</div>
<br>
<div class="row">
<div class="twelve columns">
<div class="text-center">
<a class="button" ng-click="showDirectory()">← Back to Homepage</a>
</div>
<p class="text-center">
<h1 class="text-center">Hackathons from {{selectedYear}}</h1>
<br>
<div id="toggleNav">
<h2>Show only hackathons that...</h2>
Offer Travel Reimbursements
<div class="onoffswitch">
<input id="cbTravelToggle" type="checkbox" class="onoffswitch-checkbox" ng-model="travelReimbursements" />
<label for="cbTravelToggle" class="onoffswitch-label">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
<br>Have Prizes
<div class="onoffswitch">
<input id="cbPrizeToggle" type="checkbox" class="onoffswitch-checkbox" ng-model="prizes" />
<label for="cbPrizeToggle" class="onoffswitch-label">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
<br>Accept High Schoolers
<div class="onoffswitch">
<input id="cbHighSchoolersToggle" type="checkbox" class="onoffswitch-checkbox" ng-model="highSchoolers" />
<label for="cbHighSchoolersToggle" class="onoffswitch-label">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
<br>Are Free
<div class="onoffswitch">
<input id="cbCostToggle" type="checkbox" class="onoffswitch-checkbox" ng-model="cost" />
<label for="cbCostToggle" class="onoffswitch-label">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</div>
<br>
<div id="monthNav">
<h2>Month Navigation</h2>
<div class="row" ng-repeat="hacks in chunkedHackathons">
<div class="three columns" ng-repeat="month in hacks">
<a class="button" ng-click="scrollToMonth(month.month)">{{month.month}}</a>
</div>
</div>
</div>
<hr>
</hr>
</p>
</div>
</div>
</div>
<div class="container">
<div ng-if="hackathons.length == 0">
<p class="text-center loading-text">
<em>Loading hackathons for {{selectedYear}}...</em>
</p>
</div>
<div ng-repeat="month in hackathons" ng-if="hackathons.length > 0 && month.hacks && month.hacks.length > 0">
<h1 id="{{month.month}}">{{month.month}} {{selectedYear}}</h1>
<div ng-if="(month.hacks | filter:applicable).length == 0">
<p class="empty-filter-message">No hackathons match your selected filters for this month.</p>
</div>
<div ng-repeat="hackathon in month.hacks | filter:applicable" class="hackathon-entry">
<a ng-href="{{hackathon.url}}" target="_blank" rel="noopener noreferrer">
<h2>{{hackathon.title}}</h2>
</a>
<a ng-href="{{hackathon.facebookURL}}" class="social-link" ng-if="hackathon.facebookURL != ''">
<img src="images/facebook.png" alt="Facebook profile" width="24px">
</a>
<a ng-href="{{hackathon.twitterURL}}" class="social-link" ng-if="hackathon.twitterURL != ''">
<img src="images/twitter.png" alt="Twitter profile" width="24px">
</a>
<p class="info-line">
{{hackathon.startDate}} - {{hackathon.endDate}} in {{hackathon.city}}
</p>
<p class="info-line-sm">
Hosted by {{hackathon.host}} for {{hackathon.length}} hours
</p>
<p class="info-line-sm" ng-if="hackathon.size == 'unknown'">
Capacity: Unknown
</p>
<p class="info-line-sm" ng-if="hackathon.size != 'unknown'">
Capacity: {{hackathon.size}}
</p>
<p class="info-line-sm" ng-if="hackathon.cost == 'free'">
Cost: Free
</p>
<p class="info-line-sm" ng-if="hackathon.cost != 'free'">
Cost: {{hackathon.cost}}
</p>
<p class="info-line-sm" ng-if="hackathon.notes != ''">
Note: {{hackathon.notes}}
</p>
<div class="travel-reimbursement">
<img src="images/status-yes.png" alt="Travel reimbursement offered!" width="20" ng-if="hackathon.travel == 'yes'">
<img src="images/status-no.png" alt="Travel reimbursement not offered" width="20" ng-if="hackathon.travel == 'no'">
<img src="images/status-question.png" alt="Unknown" width="20" ng-if="hackathon.travel == 'unknown'">
<p class="info-line">
Travel Reimbursement
</p>
</div>
<div class="prizes">
<img src="images/status-yes.png" alt="Prizes offered!" width="20" ng-if="hackathon.prize == 'yes'">
<img src="images/status-no.png" alt="Prizes not offered" width="20" ng-if="hackathon.prize == 'no'">
<img src="images/status-question.png" alt="Unknown" width="20" ng-if="hackathon.prize == 'unknown'">
<p class="info-line">
Prizes
</p>
</div>
<div class="high-schoolers">
<img src="images/status-yes.png" alt="High schoolers accepted!" width="20" ng-if="hackathon.highSchoolers == 'yes'">
<img src="images/status-no.png" alt="High schoolers not accepted" width="20" ng-if="hackathon.highSchoolers == 'no'">
<img src="images/status-question.png" alt="Unknown" width="20" ng-if="hackathon.highSchoolers == 'unknown'">
<p class="info-line">
High Schoolers
</p>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<a href="https://github.com/Hackalist/Hackalist.github.io">GitHub Repo</a> | Licensed under <a href="https://github.com/Hackalist/Hackalist.github.io/blob/master/LICENSE">MIT License</a>
<br>
<a href="https://github.com/Hackalist/Hackalist.github.io/graphs/contributors">Full Contributor List</a>
<br>
Built using <a href="http://getskeleton.com/">Skeleton</a>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="js/app.js"></script>
</html>