-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCore.html
More file actions
1488 lines (1356 loc) · 64.2 KB
/
Core.html
File metadata and controls
1488 lines (1356 loc) · 64.2 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
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
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html lang="en">
<!--
Hielo by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<!-- Bootstrap added for navbar -->
<html>
<head>
<meta charset="utf-8" />
<title>PASAE</title>
<!-- Bootstrap part = "shrink-to-fit=no" -->
<meta name="viewport" content="width=device-width, initial-scale=1 shrink-to-fit=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<!-- Bootstrap part-->
<meta name="description" content="">
<meta name="author" content="">
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap: Custom fonts for this template -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Bootstrap: Custom styles for this template -->
<link href="css1/agency.min.css" rel="stylesheet">
<!--Favicon-->
<link rel="icon" href="images/favicon.bmp">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="index.html"><img class="img-responsive2"
src="images/logo.png"> PASAE</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="application.html">Application</a>
</li> -->
<li class="nav-item">
<a class="nav-link " href="generic.html">Get Involved</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="Core.html">Core</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="priv/private_front.html">Log In</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- One -->
<section id="One" class="wrapper style3">
<div class="inner">
<header class="align-center">
<br>
<p>Throughout the Years</p>
<br>
<h1>CORE</h1>
</header>
</div>
</section>
<!-- Officers -->
<section class="bg-light" id="team-member">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h1 class="section-heading text-uppercase">Meet Core 31!</h1>
<h3 class="section-subheading text-muted"></h3>
<h3> Internal Component</h3>
<br>
<h1 class="section-subheading text-muted"></h1>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/P1.jpg" alt="">
<h4>Dani Carino</h4>
<p class="text-muted">Internal Vice President</p>
<ul class="list-inline social-buttons">
<li><a href="#officer1" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/P3.jpg" alt="">
<h4>Kathryn Balingit</h4>
<p class="text-muted">Secretary</p>
<ul class="list-inline social-buttons">
<li><a href="#officer3" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/P2.jpg" alt="">
<h4>Mikee Martin</h4>
<p class="text-muted">Treasurer</p>
<ul class="list-inline social-buttons">
<li><a href="#officer2" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/4.jpg" alt="">
<h4>Justin Robin Puerto</h4>
<p class="text-muted">Co-Social Chair</p>
<ul class="list-inline social-buttons">
<li><a href="#officer4" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/5.jpg" alt="">
<h4>Patty Natividad</h4>
<p class="text-muted">Co-Social Chair</p>
<ul class="list-inline social-buttons">
<li><a href="#officer5" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h3 class="section-subheading text-muted"></h3>
<h3> External Component</h3>
<br>
<h1 class="section-subheading text-muted"></h1>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/7.jpg" alt="">
<h4>Kendal Asprec</h4>
<p class="text-muted">Co-External Vice President</p>
<ul class="list-inline social-buttons">
<li><a href="#officer7" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/6.jpg" alt="">
<h4>Rafael Calleja</h4>
<p class="text-muted">Co-External Vice President</p>
<ul class="list-inline social-buttons">
<li><a href="#officer6" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/8.jpg" alt="">
<h4>Geraldine Fabro</h4>
<p class="text-muted">Engineering Representative</p>
<ul class="list-inline social-buttons">
<li><a href="#officer8" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/10.jpg" alt="">
<h4>Audrey Yue</h4>
<p class="text-muted">CED Representative</p>
<ul class="list-inline social-buttons">
<li><a href="#officer10" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/9.jpg" alt="">
<h4>AJ Sales</h4>
<p class="text-muted">Science Representative</p>
<ul class="list-inline social-buttons">
<li><a href="#officer9" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/15.jpg" alt="">
<h4>Isabella De Leon</h4>
<p class="text-muted">Science Representative</p>
<ul class="list-inline social-buttons">
<li><a href="#officer15" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h3 class="section-subheading text-muted"></h3>
<h3> Creative Component</h3>
<h1 class="section-subheading text-muted"></h1>
<br>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/11.jpg" alt="">
<h4>Sheena Gonzalez</h4>
<p class="text-muted">Creative Director</p>
<ul class="list-inline social-buttons">
<li><a href="#officer11" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/12.jpg" alt="">
<h4>Jo Apellanes</h4>
<p class="text-muted">Historian</p>
<ul class="list-inline social-buttons">
<li><a href="#officer12" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-3">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/13.jpg" alt="">
<h4>Rigel Sison</h4>
<p class="text-muted">Public Relations</p>
<ul class="list-inline social-buttons">
<li><a href="#officer13" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-3 ">
<div class="team-member">
<img class="mx-auto rounded-circle " src="img/team/14.jpg" alt="">
<h4>Seth Dumaguin</h4>
<p class="text-muted">Webmaster</p>
<ul class="list-inline social-buttons">
<li><a href="#officer14" data-toggle="modal"><i class="fa fa-user-o"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Officer Bios - Modals -->
<div class="portfolio-modal modal fade" id="officer1" tabindex="-1" role="dialog" style="display: none;" aria-hidden="true"> <div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Dani Carino</h1>
<p class="item-intro text-muted">Internal Vice President</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/P1.jpg" width="500" height="500">
<p>
As Internal Vice President (IVP) of PASAE, I manage the intern program and oversee the Internal Component of core. This includes things like planning intern meetings, pairing interns with core members, and making sure all the events planned by the Internal Component run smoothly.
As my intern, you can see first-hand the logistics behind putting together an intern program like the one offered by PASAE!
</p>
<p>
In my free time, I like to play volleyball, hike, go to concerts, binge watch tv shows, and shop!
</p>
<a href="https://www.linkedin.com/in/daniellecarino/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Mikee Martin</h1>
<p class="item-intro text-muted">Treasurer</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/P2.jpg" width="500" height="500">
<p>As treasurer, I organize fundraisers, reimburse payments (in a timely manner), and stay transparent with PASAE’s finances!</p>
<a href="https://www.linkedin.com/in/mikhaela-martin/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Kathryn Balingit</h1>
<p class="item-intro text-muted">Secretary</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/P3.jpg" width="500" height="500">
<p>As secretary, I help to keep PASAE running smoothly by taking care of the organizational tasks. Some of my duties include managing the core, intern, and community calendars, keeping an up-to-date list of all members, assigning weekly task lists, and ensuring meetings are effectively organized and recorded. I am part of the Marketing Committee for FASTERCON! </p>
<p>Outside of PASAE, I am a general member of the Mathematics Undergraduate Student Association (MUSA) and I work at the Civil and Environmental Engineering Department!</p>
<p>Every weekend I look forward to listening to my Spotify Discover Weekly! Each week is new and different, and although some weeks aren't the best, I get to discover some up-and-coming and smaller artists.
I donate my hair every time I get it cut!</p>
<a href="https://www.linkedin.com/in/kathrynbalingit/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Justine Robin Puerto</h1>
<p class="item-intro text-muted">Co Social Chair</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/4.jpg" width="500" height="500">
<p>I am the Co-Social Chair for PASAE! Patty and I essentially create the social events for PASAE to help foster a safe, supportive, and inclusive space for the interns and general members. Becoming either of our interns, you will be able to have a say in what kind of social events we hold as an organization. We will be teaching you how to plan both large scale and small scale events as well as how to collaborate with the other Pilipinx organizations. We will also teach you how to use your social skills to develop professional connections. A lot of my professional connections were founded on social connections, so I believe it is important to develop your genuineness as it helps get your foot in the door into professional connections. We will also have lots of fun and destress because PASAE is not just about developing your professional and academic skills. It is also learning how to have fun and deal with the normal stressful events of life! Intern under Social chair, and we'll teach you that as well! </p>
<p>Other Involvements: HART Lab, Pilipinx Academic Student Services Intern (Gender and Sexuality Awareness), PAA Intern and Pilipinx American Hxstory Committee, Biomedical Engineering Society, oSTEM, Asian American Association </p>
<p>Fun Fact: During Spring semester of 2018, I had two head surgeries. However, with the grace of God, and the loving support of my friends in PASAE and my beautiful family, I survived, passed my second year, and got out of academic probation!!!</p>
<a href="https://www.linkedin.com/in/justine-robin-puerto-2b6b75127/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Patty Natividad</h1>
<p class="item-intro text-muted">Co Social Chair</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/5.jpg" width="500" height="500">
<p>As Co-Social Chair with Justine, I plan the logistics (date, time, location, etc) and handle any preliminary finances of social events for PASAE. With these, we promote the feeling of family within our little community as well as with the other Pil Orgs on campus, encouraging our members to keep in touch with friends, take care of themselves, and stay sane in the wild expectations and struggles that come with UC Berkeley. As our interns, you could help us with planning and execute your own ideas on what we could all do to relax - or to go crazy! PASAE is what you make it, and your type of vibe probably resonates with someone else, so don't be afraid to make suggestions on our next social gathering!</p>
<p>I'm also committed to CLAM, the Cal Literature and Arts Magazine, and dancing in Cal Hawaii Club and Pilipino Cultural Night, so don't let being in STEM keep you from your artistic endeavors!
The main thing you should know about me: I love to read, but I am most likely to miss out on a huge franchise only to fall in love with it when it's done. Biggest examples: Harry Potter and Percy Jackson + Heroes of Olympus were both read at least 4 years after the last book came out. My favorite video game series, Kingdom Hearts, also fits this pattern.
(Also, my non-STEM-related dream is to be a young-adult fiction author - I've wanted to be one since at least freshman year of high school.)</p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Rafael Calleja</h1>
<p class="item-intro text-muted">Co-External Vice President</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/6.jpg" width="500" height="500">
<p>As one of the two External Vice Presidents, I aim to spearhead PASAE's professionalism platform. In recent years, the professionalism component of PASAE was good, but lacking. From the foundation that previous EVPs have built I hope to launch PASAE into the professional world in order to acquire more opportunities exclusive to our members.</p>
<p>My favorite sport is volleyball, I've taken three semesters worth of volleyball classes here at Berkeley. I loooooove to explore new foods (Berkeley has a couple surprisingly good spots). Favorite food is Korean Fried Chicken. I play a couple video games (Rivals of Aether, League of Legends, Ori and the Blind Forest). I am in love with this Dungeons & Dragons podcast called "The Adventure Zone" which I recommend to everyone.</p>
<a href="https://www.linkedin.com/in/rafael-calleja/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer7" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Kendall Asprec</h1>
<p class="item-intro text-muted">Co-External Vice President</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/7.jpg" width="500" height="500">
<p>Along with Raffy, I am the head of External Component. I am responsible for planning and helping plan all of PASAE's external events, establishing partnerships with other companies, maintaining PASAE's vast alumni network, and connecting members to the professional world. Anyone who interns for me will learn the professional and leadership skills that they will need to succeed in their industry.</p>
<p>Other clubs I'm involved in are: Cal Rotaract and Cal Fencing. I also like fish cones!</p>
<a href="https://www.linkedin.com/in/kendalasprec/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer8" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Geraldine Fabro</h1>
<p class="item-intro text-muted">Engineering Representative</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/8.jpg" width="500" height="500">
<p>Hello! As Core XXXI's Engineering Representative, I serve as the academic liaison to engineering majors through increasing interaction between members and industry professionals and compiling academic and professional resources such as internship opportunities, scholarships, and more. </p>
<p>Aside from PASAE, I am also a member of Cal Seismic Design Team and Concrete Canoe! I play tennis, badminton, and IM volleyball! And singing is my passion (doesn't mean I'm good)! </p>
<a href="https://www.linkedin.com/in/geraldine-fabro/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer9" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">AJ Sales</h1>
<p class="item-intro text-muted">Science Representative</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/9.jpg" width="500" height="500">
<p>As the Life Science Representative, I primarily serve our L&S Life Science majors, though with the other Science Representative and the rest of External, I help plan and facilitate professional events such as alumni mixers and industry panels aimed at all of our members and the greater Pilipinx community here at Berkeley. If you intern for me, you can help me with the aforementioned events, or with my other general responsibilities, such as cultivating and adding to our bank of resources for members.</p>
<p>Outside of PASAE, you can probably find me listening to music (I’m into old school R&B, power ballads, and movie/video-game soundtracks), playing music (I’m involved in a variety of music spaces on campus like Cal Band, PCN Band, etc.), teaching CS (I’m currently a Mentor for CS 61A), or watching Netflix (I’m currently watching Maniac, AHS: Cult, and probably The Good Place when the new season premieres).</p>
<a href="https://www.linkedin.com/in/ajsales98/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer10" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Audrey Yue</h1>
<p class="item-intro text-muted">CED Representative</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/10.jpg" width="500" height="500">
<p>I am the academic liaison to students in the College of Environmental Design! :)</p>
<a href="https://www.linkedin.com/in/audrey-lok-lum-yue-142888149/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer11" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Sheena Gonzalez</h1>
<p class="item-intro text-muted">Creative Director</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/11.jpg" width="500" height="500">
<p>As Creative Director, I ensure that the Creative Component work together to instill the Funnovation pillar. I am also in charge of making videos, designing apparels, and planning our annual fundraiser, PASAErenades!</p>
<p>Outside of PASAE and academics, I make time to design, draw, read manga, and watch Netflix. I love jamming to R&B/Soul, Filipino music and K-pop. My dream is to own a Samoyed and work for an animation company like Pixar or Dreamworks someday. Fun fact: my obsession over K-pop and their cool dance moves led me to join AFX, and I have been dancing for almost two years! </p>
<a href="https://www.linkedin.com/in/sheena-gonzalez/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer12" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Jo Apellanes</h1>
<p class="item-intro text-muted">Historian</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/12.jpg" width="500" height="500">
<p>I take pictures at events and help maintain PASAE's social media accounts!</p>
<p>Commitments--
I am also an external relations intern for PASS and a marketing committee member for the Berkeley Project!</p>
<p>Fun Facts--
Raffy and I have the same birthday (12/23)
My favorite animal is a koala!</p>
<a href="https://www.linkedin.com/in/jo-apellanes-909370157/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer13" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Rigel Sison</h1>
<p class="item-intro text-muted">Public Relations</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/13.jpg" width="500" height="500">
<p>I publicize events for PASAE on Facebook, Instagram, and other social media sites. I also contribute to other design-oriented stuff with the rest of creative component!</p>
<p>I like to play tennis, draw and paint, and shop for clothes (perhaps way too much)!</p>
<a href="https://www.linkedin.com/in/rigel-matthew-sison/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer14" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Seth Dumaguin</h1>
<p class="item-intro text-muted">Webmaster</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/14.jpg" width="500" height="500">
<p>Hello there! As PASAE's webmaster, I am resposible for editing the website. I make sure that the site is up and running. I am currently working on adding more features on the site. If you see any problems with the site, please let me know. I appreciate any constructive criticism. Thanks and Go Bears! </p>
<p>Outside PASAE I am part of the UC Berkeley's Student Technolgy Services as a Student Tech Consultant. If you need any type of tech support come see me at Moffitt :). I am also the Webmaster for the Head of the Physics Department. You'll mostly see me at the Esh space messing around or doing homework. I like watching football and basketball. So come and talk to me about those stuff if you're into that too.</p>
<a href="https://www.linkedin.com/in/seth-dumaguin/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="officer15" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h1 class="text-uppercase">Isabella De Leon</h1>
<p class="item-intro text-muted">Science Representative</p>
<img alt class="img-fluid d-block mx-auto" src="img/team/15.jpg" width="500" height="500">
<p>Hi, I'm Isabella! I'm one of the main points of contact for FASTERCON. I'm always willing to give professional and academic advice and provide resources for students in CS. </p>
<p>I'm an avid musical theatre watcher, tea addict, and romantic-era music enthusiast. </p>
<a href="https://www.linkedin.com/in/isabella-de-leon/" target="_blank">
<span class="fa-stack fa-3x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse">
</i>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Past Cores -->
<section class="bg-light" id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h1 class="section-heading text-uppercase">Past Core Members</h1>
<h3 class="section-subheading text-muted"></h3>
</div>
<div class="row">
<!-- Core 30 -->
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#core30">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/core/core30.jpg" alt="">
</a>
<div class="portfolio-caption">
<h4>Core 30</h4>
<p class="text-muted">2017 - 2018</p>
</div>
</div>
<!-- Core 29 -->
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#core29">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/core/core29.jpg" alt="">
</a>
<div class="portfolio-caption">
<h4>Core 29</h4>
<p class="text-muted">2016 - 2017</p>
</div>
</div>
<!-- Core 28 -->
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#core28">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/core/core27_2.jpg" alt="">
</a>
<div class="portfolio-caption">
<h4>Core 28</h4>
<p class="text-muted">2015 - 2016</p>
</div>
</div>
<!-- Core 27 -->
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#core27">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/core/core27_1.jpg" alt="">
</a>
<div class="portfolio-caption">
<h4>Core 27</h4>
<p class="text-muted">2014 - 2015</p>
</div>
</div>
<!-- Core 26 -->
<div class="col-md-4 col-sm-6 portfolio-item">
<a class="portfolio-link" data-toggle="modal" href="#core26">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/core/core26.png" alt="">
</a>
<div class="portfolio-caption">
<h4>Core 26</h4>
<p class="text-muted">2013 - 2014</p>
</div>
</div>
</section>
<!-- Modal Sections -->
<!-- Core 30 -->
<div class="portfolio-modal modal fade" id="core30" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<h2 class="text-uppercase">Core 30</h2>
<p class="item-intro text-muted">2017 - 2018</p>
<img class="img-fluid d-block mx-auto" src="img/core/core30.jpg" alt="">
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">