-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
508 lines (462 loc) · 25.9 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
<!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">
<title>StuyPy-a-Thon</title>
<meta name="description" content="The official website for the StuyPy hackathon">
<meta name="keywords" content="Python, StuyPy, Hackathon, StuyPy-a-Thon">
<meta name="author" content="StuyPy">
<!-- FAVICON -->
<link rel="icon" type="image/x-icon" href="resources/logos/favicon.ico">
<!-- BOOTSTRAP-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
>
<!-- ANIMATIONS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
>
<link
href="style.css"
rel="stylesheet"
>
<link
id="theme"
href="light.css"
rel="stylesheet"
>
</head>
<!-- scroll spy for current section indicator in menu bar -->
<body data-bs-spy="scroll" data-bs-target="#navbar" data-bs-offset="0" tabindex="0">
<!-- MENU BAR is transparent at first, then changes to opaque after scrolling down-->
<nav id="navbar" class="animate__animated animate__fadeIn px-3 navbar navbar-expand-lg navbar-dark navbar-transparent fixed-top">
<img src="resources/logos/logo_hackathon.png" height="60" class="nav-image" alt="logo">
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="nav navbar-nav nav-pills">
<li class="nav-item">
<a class="nav-link text-white fw-bold" href="#about">About</a>
</li>
<!-- TODO: add schedule -->
<!--
<li class="nav-item">
<a class="nav-link text-white fw-bold" href="#schedule">Schedule</a>
</li>
-->
<li class="nav-item">
<a class="nav-link text-white fw-bold" href="#team">Our Team</a>
</li>
<li class="nav-item">
<a class="nav-link text-white fw-bold" href="#sponsors">Sponsors</a>
</li>
<li class="nav-item">
<a class="nav-link text-white fw-bold" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<button onclick="themeToggle()" class="nav-link">
<img id="theme-toggle" src="resources/theme-toggle-icon.png" width="30" height="30" alt="theme-toggle">
</button>
</li>
</ul>
</div>
</nav>
<!-- LANDING -->
<div id="home-top" class="shadow d-flex">
<img class="animate__animated animate__fadeInDown" id="top-logo" src="resources/logos/logo_hackathon_hd.png" alt="landing-logo">
<a
class="button-fill animate__animated animate__fadeIn"
href="https://docs.google.com/forms/d/e/1FAIpQLSdMtlVv_mbSI1NTZc41n1TEEHdn2dp9zoBNkNulHg5MnbL4HQ/viewform"
target="_blank"
rel="noopener noreferrer">
Sign Up
</a>
</div>
<div id="main-content" class="fluid-container d-flex flex-column align-items-center">
<!-- ABOUT -->
<div id="about-section" class="d-flex content-section container">
<!-- Anchor that is offset for menu links -->
<a id="about" class="anchor"></a>
<div>
<div class="p-4 fluid-container on-scroll-animate animate__animated">
<h1>What is StuyPy?</h1>
<p>
StuyPy is a casual, <strong>beginner-friendly</strong> club aiming to teach people with no prior
experience to code in Python, and to create projects while having fun.
We additionally want to introduce members to Python, and provide them with
a strong foundation in the field of computer science from the ground up.
</p>
</div>
<div class="p-4 fluid-container on-scroll-animate animate__animated">
<h1>The StuyPy-a-Thon</h1>
<p class="pb-4">
To better reinforce concepts and allow members to learn even more, We will
be hosting <strong>StuyPy's first hackathon!</strong> Show what you've learned so far, and create a project
which you can be proud of! This hackathon is open to <em>all members</em> (anyone can join
at the StuyActivties page), where you can work with others or solo if you wish.
</p>
<a
class="button-fill animate__animated animate__fadeIn"
href="https://stuyactivities.org/stuypy"
target="_blank"
rel="noopener noreferrer">
Join StuyActivities
</a>
</div>
</div>
<div id="countdown" class="animate__animated on-scroll-animate d-flex flex-column justify-content-center text-center">
<div class="d-flex justify-content-center text-center">
<div class="p-2 d-flex justify-content-center flex-column">
<h1 id="days-left" class="text-center">88</h1>
<p class="countdown-label">days</p>
</div>
<div class="p-2 d-flex justify-content-center flex-column">
<h1 id="hours-left" class="text-center">88</h1>
<p class="countdown-label">hr</p>
</div>
<div class="p-2 d-flex justify-content-center flex-column">
<h1 id="minutes-left" class="text-center">88</h1>
<p class="countdown-label">min</p>
</div>
<div class="p-2 d-flex justify-content-center flex-column">
<h1 id="seconds-left" class="text-center">88</h1>
<p class="countdown-label">sec</p>
</div>
</div>
<p>Until the hackathon!</p>
</div>
</div>
<!-- * * Temporarily removed
schedule-content:
______________________
|item1 | snek | |
| | snek | item2|
|item3 | snek | |
| | snek | item4|
|_item5|_snek_|______|
-->
<!-- SCHEDULE -->
<!--
<div id="schedule-section" class="text-center content-section container">
<a id="schedule" class="anchor"></a>
<h1>Schedule</h1>
<p id="schedule-reminder"><em>This section will be updated as time passses. Be sure to check back for updates!</em></p>
<table id="schedule-content">
<tr>
<td class="schedule-item schedule-item-start content-section">
<h4>Hackathon Begins</h4>
<p>6/4 9:00 AM EST</p>
</td>
<td rowspan="5">
<img id="scroll-animation" rel="preload" src="resources/frames/0.png" alt="schedule">
</td>
<td></td>
</tr>
<tr>
<td></td>
<td class="schedule-item schedule-item-start content-section">
<h4>Opening Ceremony</h4>
<p>6/4 9:05 AM EST</p>
</td>
</tr>
<tr>
<td class="schedule-item schedule-item-start content-section">
<h4>TBD activty</h4>
<p>6/4 3:00 PM EST</p>
</td>
<td></td>
</tr>
<tr>
<td></td>
<td class="schedule-item schedule-item-start content-section">
<h4>TBD activity</h4>
<p>6/4 5:00 PM EST</p>
</td>
</tr>
<tr>
<td class="schedule-item schedule-item-start content-section">
<h4>Hackathon Ends</h4>
<p>6/5 9:00 PM EST</p>
</td>
</tr>
</table>
</div>
-->
<!-- TEAM -->
<div id="team-section" class="text-center content-section container">
<a id="team" class="anchor"></a>
<h1>Our Team</h1>
<div id="team-carousel" class="carousel slide animate__animated on-scroll-fade" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="card-container fluid-container d-flex flex-wrap justify-content-center align-items-center">
<div id="anthony" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Anthony Chen">
<div class="card-body primary-bg">
<h5 class="card-title">Anthony<br>Chen</h5>
<p class="card-text">
Organizer <br>
Webmaster
</p>
</div>
</div>
<div id="zidane" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Zidane Karim">
<div class="card-body primary-bg">
<h5 class="card-title">Zidane<br>Karim</h5>
<p class="card-text">
Organizer<br> <br>
</p>
</div>
</div>
<div id="shaurya" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Shaurya Sen">
<div class="card-body primary-bg">
<h5 class="card-title">Shaurya<br>Sen</h5>
<p class="card-text">
Organizer <br>
Webmaster
</p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card-container fluid-container flex-wrap d-flex justify-content-center align-items-center">
<div id="sudipta" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Sudipta Chakraborty">
<div class="card-body primary-bg">
<h5 class="card-title">Sudipta<br>Chakraborty</h5>
<p class="card-text">
Webmaster <br>
Teacher Assistant
</p>
</div>
</div>
<div id="gabriel" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Gabriel Thompson">
<div class="card-body primary-bg">
<h5 class="card-title">Gabriel<br>Thompson</h5>
<p class="card-text">
Teacher Assistant <br> <br>
</p>
</div>
</div>
<div id="konstantin" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Konstantin Astafurov">
<div class="card-body primary-bg">
<h5 class="card-title">Konstantin<br>Astafurov</h5>
<p class="card-text">
Teacher Assistant <br> <br>
</p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card-container fluid-container d-flex flex-wrap justify-content-center align-items-center">
<div id="rafia" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Rafia Islam">
<div class="card-body primary-bg">
<h5 class="card-title">Rafia<br>Islam</h5>
<p class="card-text">
Public Relations / Outreach <br> <br>
</p>
</div>
</div>
<div id="ankki" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Ankki Dong">
<div class="card-body primary-bg">
<h5 class="card-title">Ankki<br>Dong</h5>
<p class="card-text">
Public Relations / Outreach <br> <br>
</p>
</div>
</div>
<div id="julian" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Julian Huang">
<div class="card-body primary-bg">
<h5 class="card-title">Julian<br>Huang</h5>
<p class="card-text">
Public Relations / Outreach <br> <br>
</p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card-container fluid-container d-flex flex-wrap justify-content-center align-items-center">
<div id="kaitlin" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Kaitlin Tan">
<div class="card-body primary-bg">
<h5 class="card-title">Kaitlin<br> Tan</h5>
<p class="card-text">
Public Relations / Outreach <br> <br>
</p>
</div>
</div>
<div id="intia" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Intia Ibnah">
<div class="card-body primary-bg">
<h5 class="card-title">Intia<br>Ibnah</h5>
<p class="card-text">
Public Relations / Outreach <br> <br>
</p>
</div>
</div>
<div id="jason" class="card">
<img src="resources/team/no-pic.jpg" class="card-img-top" alt="Jason Ng">
<div class="card-body primary-bg">
<h5 class="card-title">Jason<br>Ng</h5>
<p class="card-text">
Public Relations / Outreach <br> <br>
</p>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#team-carousel" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</a>
<a class="carousel-control-next" href="#team-carousel" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</a>
</div>
</div>
<div id="sponsors-section" class="text-center content-section container">
<a id="sponsors" class="anchor"></a>
<h1>Sponsors</h1>
<div id="sponsors-list" class="">
<a href="https://www.wolframalpha.com/"><img class="sponsor-img animate__animated on-scroll-animate" alt="wolfram" src="resources/logos/sponsors/wolfram.png"></a>
<a href="https://gen.xyz/"><img class="sponsor-img animate__animated on-scroll-animate" alt="xyz" src="resources/logos/sponsors/xyz.png"></a>
<a href="https://artofproblemsolving.com/"><img class="sponsor-img animate__animated on-scroll-animate" alt="aops" src="resources/logos/sponsors/aops.png"></a>
<a href="https://www.echo3d.co/"><img class="sponsor-img animate__animated on-scroll-animate" alt="echo3d" src="resources/logos/sponsors/echo3D.png"></a>
</div>
</div>
<!-- FAQ -->
<div id="faq-section" class="text-center content-section container">
<!-- Anchor that is offset for menu links -->
<a id="faq" class="anchor"></a>
<h1>FAQ</h1>
<div id="faq-content" class="d-flex flex-column justify-content-center align-items-center">
<div class="faq-question">
<h4>Who can join?</h4>
<p>
As long as you attend Stuyvesant High School,
you can join the StuyPy club to participate in the hackathon!
Just join through StuyActivities, and you can join the hackathon.
</p>
</div>
<div class="faq-question animate__animated on-scroll-fade">
<h4>Do I need to have prior experience to join?</h4>
<p>
You do not need prior experience, but it is advised to have some
basic knowledge. This hackathon is meant to display the knowledge
you've learned, so you should try to have some basic skills before
joining! However, the experience of the hackathon will teach much
more than you might realize.
</p>
</div>
<div class="faq-question animate__animated on-scroll-fade">
<h4>How many people are allowed per team?</h4>
<p>
We allow up to 4 people per team, but you are allowed to work solo as well!
</p>
</div>
<div class="faq-question animate__animated on-scroll-fade">
<h4>Where can I join a team?</h4>
<p>
If you wish to join a team, you can ask members in our Discord server to
form a team! There will also be an option to add your team members when signing up.
</p>
</div>
<!-- TODO
<div class="faq-question animate__animated on-scroll-fade">
<h4>What are the rewards?</h4>
<p>
TBD
</p>
</div>
-->
<div class="faq-question animate__animated on-scroll-fade">
<h4>How long will the hackathon be?</h4>
<p>
The hackathon will begin on June 4th, and will last 36 hours.
Be sure to check back for the schedule for more information!
</p>
</div>
<!-- TODO
<div class="faq-question animate__animated on-scroll-fade">
<h4>Will this hackathon be in person or virtual?</h4>
<p>
TBD
</p>
</div>
-->
<div class="faq-question animate__animated on-scroll-fade">
<h4>Where can I sign up?</h4>
<p class="link">
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSdMtlVv_mbSI1NTZc41n1TEEHdn2dp9zoBNkNulHg5MnbL4HQ/viewform"
target="_blank"
rel="noopener noreferrer">
Sign up at this google form!</a>
</p>
</div>
</div>
</div>
</div>
<!-- FOOTER -->
<div id="footer" class="fluid-container primary-bg p-4 justify-content-center">
<div class="d-flex flex-column">
<div class="d-flex justify-content-center">
<a href="https://discord.gg/3kDUYgZGfQ" target="_blank" rel="noopener noreferrer">
<img class="social-logo" src="resources/logos/socials/discord.png" alt="discord">
</a>
<a href="https://www.instagram.com/stuypy/" target="_blank" rel="noopener noreferrer">
<img class="social-logo" src="resources/logos/socials/instagram.png" alt="instagram">
</a>
<a href="https://stuyactivities.org/stuypy" target="_blank" rel="noopener noreferrer">
<img class="social-logo" src="resources/logos/socials/stuyact.png" alt="stuy activities">
</a>
<a href="https://github.com/StuyPy" target="_blank" rel="noopener noreferrer">
<img class="social-logo" src="resources/logos/socials/github.png" alt="github">
</a>
<a href="https://hackclub.com/" target="_blank" rel="noopener noreferrer">
<img class="social-logo" src="resources/logos/socials/hackclub.png" alt="hackclub">
</a>
</div>
<p class="text-white text-center">© 2022 StuyPy. All rights reserved.</p>
</div>
</div>
<!-- SCRIPTS -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous">
</script>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous">
</script>
<script src="index.js"></script>
</body>
</html>