-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtraditions.html
989 lines (985 loc) · 61.8 KB
/
traditions.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
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
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CoRE | Traditions </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(
"assets/images/core-lore/core-lore-1.jpg",
"assets/images/core-lore/core-lore-2.jpg",
"assets/images/core-lore/core-lore-3.jpg",
"assets/images/core-lore/core-lore-4.jpg",
"assets/images/core-hacks/core-hacks-1.jpg",
"assets/images/core-hacks/core-hacks-2.jpg",
"assets/images/core-hacks/core-hacks-3.jpg",
"assets/images/core-hacks/core-hacks-4.jpg",
"assets/images/corebecue/corebecue-1.jpg",
"assets/images/corebecue/corebecue-2.jpg",
"assets/images/corebecue/corebecue-3.jpg",
"assets/images/corebecue/corebecue-4.jpg",
"assets/images/core-project-fair/core-project-fair-1.jpg",
"assets/images/core-project-fair/core-project-fair-2.jpg",
"assets/images/core-project-fair/core-project-fair-3.jpg",
"assets/images/core-project-fair/core-project-fair-4.jpg",
"assets/images/senior-send-off/senior-send-off-1.jpg",
"assets/images/senior-send-off/senior-send-off-2.jpg",
"assets/images/senior-send-off/senior-send-off-3.jpg",
"assets/images/senior-send-off/senior-send-off-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">Traditions</div>
<div style="font-size: 18px;" class="ui segments">
<!-- CoRE Lore -->
<div style="font-size: 18px;" class="ui segment">
<div class="content">
<h2 class="header">
<div class="image">
<i class="big book icon"></i>
CoRE Lore
</div>
</h2>
<div class="description">
<p>
CoRE Lore is an annual event that occurs around Thanksgiving. Every year current CoRE members invite all of their alumni back to campus for a Thanksgiving-esque feast. The main part of CoRE Lore, besides eating of course, are the stories that the alumni
tell. Anyone that has an interesting story or something funny to talk about from their time on CoRE can get up and reminisce with everyone. We eat, we laugh, and we have a great time.
</p>
</div>
<br>
<br>
<!-- CoRE Lore Images -->
<div class="ui device only center aligned grid">
<button id="core-lore-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="core-lore-modal-1" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Lore - 1 of 4
</div>
<div class="ui image content">
<div class="hard-code-centered image">
<div class="ui centered big bordered stackable image">
<img src="assets/images/core-lore/core-lore-1.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Alumnus recounting stories from his time on CoRE.
</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="core-lore-modal-2" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Lore - 2 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/core-lore/core-lore-2.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members and alumni eating a thanksgiving feast together.
</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="core-lore-modal-3" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Lore - 3 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/core-lore/core-lore-3.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members and alumni eating a thanksgiving feast together.
</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="core-lore-modal-4" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Lore - 4 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/core-lore/core-lore-4.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members and alumni playing games.
</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>
<!-- CoREbecue -->
<div style="font-size: 18px;" class="ui segment">
<div class="content">
<h2 class="header">
<div class="image">
<i class="big food icon"></i>
CoREbecue
</div>
</h2>
<div class="description">
<p>
CoREbecue is an annual event that is hosted near the end of the Spring semester. Current members invite alumni back for a barbecue and picnic in the park.
Here, we enjoy the nice weather, good food, and even better company before the semester ends.
</p>
</div>
<br>
<br>
<!-- CoREbecue Images -->
<div class="ui device only center aligned grid">
<button id="corebecue-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="corebecue-modal-1" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoREbecue - 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/corebecue/corebecue-1.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Current members and alumni having a barbecue at a local park.
</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="corebecue-modal-2" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoREbecue - 2 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/corebecue/corebecue-2.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Current members and alumni sharing stories.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon stackable 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="corebecue-modal-3" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoREbecue - 3 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/corebecue/corebecue-3.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Current members and alumni playing frisbee.
</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="corebecue-modal-4" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoREbecue - 4 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/corebecue/corebecue-4.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Current members and alumni playing frisbee.
</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>
<!-- CoRE Hacks -->
<div style="font-size: 18px;" class="ui segment">
<div class="content">
<h2 class="header">
<div class="image">
<i class="big laptop icon"></i>
CoRE Hacks
</div>
</h2>
<div class="description">
<p>
CoRE hosts a hackathon for current members and friends of CoRE during the Spring semester. During this hackathon, members can work on their projects while receiving
keynote speeches and eating pizza or other snacks. After 24 hours are up, our alumni will judge the projects and declare the winners.
</p>
</div>
<br>
<br>
<!-- CoRE Hacks Images -->
<div class="ui device only center aligned grid">
<button id="core-hacks-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="core-hacks-modal-1" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Hacks - 1 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/core-hacks/core-hacks-1.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Current member working on his project.
</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="core-hacks-modal-2" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Hacks - 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/core-hacks/core-hacks-2.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Current members and alumni eating pizza and sharing stories.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon stackable 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="core-hacks-modal-3" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Hacks - 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/core-hacks/core-hacks-3.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Current member presenting his project to alumni judges.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon stackable 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="core-hacks-modal-4" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Hacks - 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/core-hacks/core-hacks-4.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
Current member presenting his project to alumni judges.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled stackable icon button">
<i class="left arrow icon"></i>
Previous
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CoRE Project Fair -->
<div style="font-size: 18px;" class="ui segment">
<div class="content">
<h2 class="header">
<div class="image">
<i class="big idea icon"></i>
CoRE Project Fair
</div>
</h2>
<div class="description">
<p>
Throughout the year, CoRE members will work on their own projects and then, near the end of the Spring semester, members host a project fair to showcase all of our hard work.
Past projects include building T-shirt cannons, drones, or even creating a whole new programming language!
</p>
</div>
<br>
<br>
<!-- CoRE Project Fair Images -->
<div class="ui device only center aligned grid">
<button id="core-project-fair-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="core-project-fair-modal-1" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Project Fair - 1 of 4
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui big bordered stackable image">
<img src="assets/images/core-project-fair/core-project-fair-1.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE member showing his project to the CoRE faculty advisor.
</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="core-project-fair-modal-2" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Project Fair - 2 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/core-project-fair/core-project-fair-2.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members presenting their projects.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon stackable 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="core-project-fair-modal-3" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Project Fair - 3 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/core-project-fair/core-project-fair-3.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members presenting their projects.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon stackable 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="core-project-fair-modal-4" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
CoRE Project Fair - 4 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/core-project-fair/core-project-fair-4.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members presenting their projects.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled stackable icon button">
<i class="left arrow icon"></i>
Previous
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Senior Send-Off -->
<div style="font-size: 18px;" class="ui segment">
<div class="content">
<h2 class="header">
<div class="image">
<i class="big student icon"></i>
Senior Send-Off
</div>
</h2>
<div class="description">
<p>
Each year, underclassmen plan an event to send-off the seniors before they graduate and show appreciation for all their friendship and wisdom over the years.
During this event, current members play games and tell stories about the seniors.
</p>
</div>
<br>
<br>
<!-- Senior Send-Off Images -->
<div class="ui device only center aligned grid">
<button id="senior-send-off-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="senior-send-off-modal-1" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Senior Send-Off - 1 of 4
</div>
<div class="image content">
<div class="hard-code-centered image">
<div class="ui big bordered stackable image">
<img src="assets/images/senior-send-off/senior-send-off-1.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members playing board games.
</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="senior-send-off-modal-2" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Senior Send-Off - 2 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/senior-send-off/senior-send-off-2.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE members playing video games.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon stackable 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="senior-send-off-modal-3" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Senior Send-Off - 3 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/senior-send-off/senior-send-off-3.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE seniors
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled icon stackable 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="senior-send-off-modal-4" class="ui small modal">
<i class="close icon"></i>
<div class="ui header">
Senior Send-Off - 4 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/senior-send-off/senior-send-off-4.jpg">
</div>
</div>
<div class="hard-code-centered description">
<p>
CoRE seniors presented with their personalized gift from the underclassmen.
</p>
</div>
<br>
<div class="actions">
<div class="ui left floated left labeled stackable icon button">
<i class="left arrow icon"></i>
Previous
</div>
</div>
<br>
</div>
<br>
</div>
</div>
</div>
</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 CoRE Lore
$('#core-lore-modal-1')
.modal('attach events', '#core-lore-image-1', 'show')
.modal('attach events', '#core-lore-gallery', 'show')
.modal('attach events', '#core-lore-modal-2 .ui.left.floated.left.labeled.icon.button', 'show')
;
$('#core-lore-modal-2')
.modal('attach events', '#core-lore-image-2', 'show')
.modal('attach events', '#core-lore-modal-3 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#core-lore-modal-1 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#core-lore-modal-3')
.modal('attach events', '#core-lore-image-3', 'show')
.modal('attach events', '#core-lore-modal-4 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#core-lore-modal-2 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#core-lore-modal-4')
.modal('attach events', '#core-lore-image-4', 'show')
.modal('attach events', '#core-lore-modal-3 .ui.right.floated.right.labeled.icon.button', 'show')
;
// Modals for CoREbecue
$('#corebecue-modal-1')
.modal('attach events', '#corebecue-image-1', 'show')
.modal('attach events', '#corebecue-gallery', 'show')
.modal('attach events', '#corebecue-modal-2 .ui.left.floated.left.labeled.icon.button', 'show')
;
$('#corebecue-modal-2')
.modal('attach events', '#corebecue-image-2', 'show')
.modal('attach events', '#corebecue-modal-3 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#corebecue-modal-1 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#corebecue-modal-3')
.modal('attach events', '#corebecue-image-3', 'show')
.modal('attach events', '#corebecue-modal-4 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#corebecue-modal-2 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#corebecue-modal-4')
.modal('attach events', '#corebecue-image-4', 'show')
.modal('attach events', '#corebecue-modal-3 .ui.right.floated.right.labeled.icon.button', 'show')
;
// Modals for CoRE Hacks
$('#core-hacks-modal-1')
.modal('attach events', '#core-hacks-image-1', 'show')
.modal('attach events', '#core-hacks-gallery', 'show')
.modal('attach events', '#core-hacks-modal-2 .ui.left.floated.left.labeled.icon.button', 'show')
;
$('#core-hacks-modal-2')
.modal('attach events', '#core-hacks-image-2', 'show')
.modal('attach events', '#core-hacks-modal-3 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#core-hacks-modal-1 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#core-hacks-modal-3')
.modal('attach events', '#core-hacks-image-3', 'show')
.modal('attach events', '#core-hacks-modal-4 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#core-hacks-modal-2 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#core-hacks-modal-4')
.modal('attach events', '#core-hacks-image-4', 'show')
.modal('attach events', '#core-hacks-modal-3 .ui.right.floated.right.labeled.icon.button', 'show')
;
// Modals for CoRE Project Fair
$('#core-project-fair-modal-1')
.modal('attach events', '#core-project-fair-image-1', 'show')
.modal('attach events', '#core-project-fair-gallery', 'show')
.modal('attach events', '#core-project-fair-modal-2 .ui.left.floated.left.labeled.icon.button', 'show')
;
$('#core-project-fair-modal-2')
.modal('attach events', '#core-project-fair-image-2', 'show')
.modal('attach events', '#core-project-fair-modal-3 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#core-project-fair-modal-1 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#core-project-fair-modal-3')
.modal('attach events', '#core-project-fair-image-3', 'show')
.modal('attach events', '#core-project-fair-modal-4 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#core-project-fair-modal-2 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#core-project-fair-modal-4')
.modal('attach events', '#core-project-fair-image-4', 'show')
.modal('attach events', '#core-project-fair-modal-3 .ui.right.floated.right.labeled.icon.button', 'show')
;
// Modals for Senior Send-Off
$('#senior-send-off-modal-1')
.modal('attach events', '#senior-send-off-image-1', 'show')
.modal('attach events', '#senior-send-off-gallery', 'show')
.modal('attach events', '#senior-send-off-modal-2 .ui.left.floated.left.labeled.icon.button', 'show')
;
$('#senior-send-off-modal-2')
.modal('attach events', '#senior-send-off-image-2', 'show')
.modal('attach events', '#senior-send-off-modal-3 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#senior-send-off-modal-1 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#senior-send-off-modal-3')
.modal('attach events', '#senior-send-off-image-3', 'show')
.modal('attach events', '#senior-send-off-modal-4 .ui.left.floated.left.labeled.icon.button', 'show')
.modal('attach events', '#senior-send-off-modal-2 .ui.right.floated.right.labeled.icon.button', 'show')
;
$('#senior-send-off-modal-4')
.modal('attach events', '#senior-send-off-image-4', 'show')
.modal('attach events', '#senior-send-off-modal-3 .ui.right.floated.right.labeled.icon.button', 'show')
;
</script>
</html>