-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
550 lines (547 loc) · 33.9 KB
/
events.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CoRE | Events </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Favicon Start -->
<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">
<link rel="shortcut icon" href="favicon.ico">
<meta name="msapplication-config" content="favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- Favicon End -->
<link rel="stylesheet" href="semantic/dist/semantic.css" media="screen">
<link rel="stylesheet" href="assets/css/edits.css" media="screen">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<!-- pre-loads images -->
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var images = new Array()
function preload() {
for (i = 0; i < preload.arguments.length; i++) {
images[i] = new Image()
images[i].src = preload.arguments[i]
}
}
preload(
"http://core.binghamton.edu/~anieto1/corewebsite/assets/images/escape-the-room/escape-the-room-1.jpg",
"http://core.binghamton.edu/~anieto1/corewebsite/assets/images/escape-the-room/escape-the-room-2.jpg",
"http://core.binghamton.edu/~anieto1/corewebsite/assets/images/escape-the-room/escape-the-room-3.jpg",
"http://core.binghamton.edu/~anieto1/corewebsite/assets/images/escape-the-room/escape-the-room-4.jpg",
"http://core.binghamton.edu/~anieto1/corewebsite/assets/images/escape-the-room/escape-the-room-5.jpg",
"http://core.binghamton.edu/~anieto1/corewebsite/assets/images/escape-the-room/escape-the-room-6.jpg",
"http://core.binghamton.edu/~anieto1/corewebsite/assets/images/coding-workshop/coding-workshop-1.jpg",
"http://core.binghamton.edu/~anieto1/corewebsite/assets/images/coding-workshop/coding-workshop-2.jpg",
"http://core.binghamton.edu/~anieto1/corewebsite/assets/images/coding-workshop/coding-workshop-3.jpg",
"http://core.binghamton.edu/~anieto1/corewebsite/assets/images/coding-workshop/coding-workshop-4.jpg"
)
//--><!]]>
</script>
</head>
<body>
<nav class="ui borderless stackable menu">
<div class="ui container">
<a class="item" href="./index.html">
<img class="ui mini image" src="assets/images/corebot/corebot.svg">
</a>
<a class="item" href="./index.html">Home</a>
<a class="item" href="./traditions.html">Traditions</a>
<a class="item" href="./events.html">Events</a>
<a class="item" href="./history.html">History</a>
<a class="item" href="./join.html">Join</a>
<a class="item" href="./contact.html">Contact</a>
</div>
</nav>
<div class="ui container">
<div style="font-size: 18px;" class="ui segments">
<div style="font-size: 18px;" class="ui segment">
<div class="ui huge header">Events</div>
<div style="font-size: 18px;" class="ui segments">
<!-- Escape The Room -->
<div style="font-size: 18px;" class="ui segment">
<div class="content">
<h2 class="header">
<div class="image">
<i class="big privacy icon"></i>
Escape The Room
</div>
</h2>
<div class="description">
<p>
In order to share our community's love for puzzles and games, CoRE has taken on the challenge of creating an Escape the Room for the Binghamton University community. We have developed software and put together hardware to make our Escape the Rooms as
epic as possible.
</p>
</div>
<br>
<br>
<!-- Escape The Room Images -->
<div class="ui device only center aligned grid ipad">
<button id="escape-gallery" class="big violet ui button">
<i class="small image icon"></i> Photo Gallery
</button>
</div>
<br>
<div class="ui six column center aligned grid">
<div class="column">
<div class="item">
<div id="escape-modal-1" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Escape The Room - 1 of 6
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui centered big bordered stackable image">
<img src="assets/images/escape-the-room/escape-the-room-1.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members act as game masters for the escape the room participants.
</p>
</div>
<br>
<div class="actions">
<div class="ui right floated right labeled icon button">
<i class="right arrow icon"></i>
Next
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
<div class="column">
<div class="item">
<div id="escape-modal-2" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Escape The Room - 2 of 6
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui centered big bordered stackable image">
<img src="assets/images/escape-the-room/escape-the-room-2.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
The doors to the O'Connor great room where the event was hosted.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon button">
<i class="left arrow icon"></i>
Previous
</div>
<div class="ui right floated right labeled icon button">
<i class="right arrow icon"></i>
Next
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
<div class="column">
<div class="item">
<div id="escape-modal-3" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Escape The Room - 3 of 6
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui centered big bordered stackable image">
<img src="assets/images/escape-the-room/escape-the-room-3.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Edgar Allan Poe themed decorations.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon button">
<i class="left arrow icon"></i>
Previous
</div>
<div class="ui right floated right labeled icon button">
<i class="right arrow icon"></i>
Next
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
<div class="column">
<div class="item">
<div id="escape-modal-4" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Escape The Room - 4 of 6
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui centered big bordered stackable image">
<img src="assets/images/escape-the-room/escape-the-room-4.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Edgar Allan Poe themed decorations.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon button">
<i class="left arrow icon"></i>
Previous
</div>
<div class="ui right floated right labeled icon button">
<i class="right arrow icon"></i>
Next
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
<div class="column">
<div class="item">
<div id="escape-modal-5" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Escape The Room - 5 of 6
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui centered big bordered stackable image">
<img src="assets/images/escape-the-room/escape-the-room-5.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Edgar Allan Poe themed decorations.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon button">
<i class="left arrow icon"></i>
Previous
</div>
<div class="ui right floated right labeled icon button">
<i class="right arrow icon"></i>
Next
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
<div class="column">
<div class="item">
<div id="escape-modal-6" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Escape The Room - 6 of 6
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui centered big bordered stackable image">
<img src="assets/images/escape-the-room/escape-the-room-6.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Edgar Allan Poe themed decorations.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon button">
<i class="left arrow icon"></i>
Previous
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Coding Workshop -->
<div style="font-size: 18px;" class="ui segment">
<div class="content">
<h2 class="header">
<div class="image">
<i class="big code icon"></i>
Coding Workshops
</div>
</h2>
<div class="description">
<p>
In an effort to spread the joys of coding, CoRE has hosted various coding workshops. Students from all across Binghamton have shown up to learn about coding and we hope they left with a newfound appreciation or even hobby.
</p>
</div>
<br>
<br>
<!-- Coding Workshop Images -->
<div class="ui device only center aligned grid">
<button id="coding-workshop-gallery" class="big violet ui button">
<i class="small image icon"></i> Photo Gallery
</button>
</div>
<br>
<div class="ui computer only four column center aligned grid">
<div class="column">
<div class="item">
<div id="coding-workshop-modal-1" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Coding Workshops - 1 of 4
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui centered big bordered stackable image">
<img src="assets/images/coding-workshop/coding-workshop-1.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members instructing workshop attendees.
</p>
</div>
<br>
<div class="actions">
<div class="ui right floated right labeled icon button">
<i class="right arrow icon"></i>
Next
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
<div class="column">
<div class="item">
<div id="coding-workshop-modal-2" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Coding Workshops - 2 of 4
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui centered medium bordered stackable image">
<img src="assets/images/coding-workshop/coding-workshop-2.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members instructing workshop attendees.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon button">
<i class="left arrow icon"></i>
Previous
</div>
<div class="ui right floated right labeled icon button">
<i class="right arrow icon"></i>
Next
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
<div class="column">
<div class="item">
<div id="coding-workshop-modal-3" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Coding Workshops - 3 of 4
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui centered medium bordered stackable image">
<img src="assets/images/coding-workshop/coding-workshop-3.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members instructing workshop attendees.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon button">
<i class="left arrow icon"></i>
Previous
</div>
<div class="ui right floated right labeled icon button">
<i class="right arrow icon"></i>
Next
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
<div class="column">
<div class="item">
<div id="coding-workshop-modal-4" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Coding Workshops - 4 of 4
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui centered medium bordered stackable image">
<img src="assets/images/coding-workshop/coding-workshop-4.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members instructing workshop attendees.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon button">
<i class="left arrow icon"></i>
Previous
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Color Combat -->
<div style="font-size: 18px;" class="ui segment">
<div class="content">
<h2 class="header">
<div class="image">
<i class="big announcement icon"></i>
Color Combat
</div>
</h2>
<div class="description">
<p>
CoRE regularly participates in Color Combat, a Dickinson Community event. As Team CoREnge (orange), we spend a weekend in the Fall semester competing against various other teams in sports events, attendence events, and even scavenger hunts!
</p>
</div>
</div>
</div>
<!-- Mutant Mania -->
<div style="font-size: 18px;" class="ui segment">
<div class="content">
<h2 class="header">
<div class="image">
<i class="big lightning icon"></i>
Mutant Mania
</div>
</h2>
<div class="description">
<p>
Each year, CoRE hosts an event for Dickinson's Mutant Mania, a week-long event in the Spring semester where each Dickinson building competes against each other for the #1 title.
Past events have consisted of Human Hungry Hungry Hippos, catapualt building competitions, and miniature boat building competitions.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
</body>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="semantic/dist/semantic.min.js"></script>
<script>
// Modals for the Escape The Room event
$('#escape-modal-1')
.modal('attach events', '#escape-image-1', 'show')
.modal('attach events', '#escape-gallery', 'show')
.modal('attach events', '#escape-modal-2 .ui.left.floated.left.labeled.icon.button', 'show')
;
$('#escape-modal-2')
.modal('attach events', '#escape-image-2', 'show')
.modal('attach events', '#escape-modal-3 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#escape-modal-1 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#escape-modal-3')
.modal('attach events', '#escape-image-3', 'show')
.modal('attach events', '#escape-modal-4 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#escape-modal-2 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#escape-modal-4')
.modal('attach events', '#escape-image-4', 'show')
.modal('attach events', '#escape-modal-5 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#escape-modal-3 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#escape-modal-5')
.modal('attach events', '#escape-image-5', 'show')
.modal('attach events', '#escape-modal-6 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#escape-modal-4 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#escape-modal-6')
.modal('attach events', '#escape-image-6', 'show')
.modal('attach events', '#escape-modal-5 .ui.right.floated.right.labeled.icon.button', 'show')
;
// Modals for the Coding Workshop event
$('#coding-workshop-modal-1')
.modal('attach events', '#coding-workshop-image-1', 'show')
.modal('attach events', '#coding-workshop-gallery', 'show')
.modal('attach events', '#coding-workshop-modal-2 .ui.left.floated.left.labeled.icon.button', 'show')
;
$('#coding-workshop-modal-2')
.modal('attach events', '#coding-workshop-image-2', 'show')
.modal('attach events', '#coding-workshop-modal-3 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#coding-workshop-modal-1 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#coding-workshop-modal-3')
.modal('attach events', '#coding-workshop-image-3', 'show')
.modal('attach events', '#coding-workshop-modal-4 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#coding-workshop-modal-2 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#coding-workshop-modal-4')
.modal('attach events', '#coding-workshop-image-4', 'show')
.modal('attach events', '#coding-workshop-modal-3 .ui.right.floated.right.labeled.icon.button', 'show')
;
</script>
</html>