-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpeople.html
More file actions
90 lines (87 loc) · 3.05 KB
/
people.html
File metadata and controls
90 lines (87 loc) · 3.05 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
---
layout: default
title: People
---
<!-- Program page content section. -->
<section id="people-main">
<div class="page-image">
<img src="assets/images/people/people.png" alt="">
</div>
<div class="page-title">
<h4>PEOPLE</h4>
<p>Our mentors, volunteers, and advisors are excited to provide 6th - 12th graders with an
opportunity to start coding at a young age. We hope to nurture a fun,
nonintimidating educational environment to allow any student from any background to enjoy
learning to code. A big thank you to our advisor <strong style="font-family: sans-serif;">Charles "Charlie" Shackford</strong>, the ICS department chair <strong
style="font-family: sans-serif;">Dr. Scott Robertson</strong>, Associate Faculty
Specialist <strong style="font-family: sans-serif;">Kenny Quibilan</strong>, and IT System
Administrator <strong style="font-family: sans-serif;">Todd Tomita</strong>
for their support to make this program possible.</p>
</div>
<div id="people-content">
<div class="profile-section">
<div class="profile-title">
<h4>MENTORS</h4>
</div>
<div class="profiles">
{% for member in site.data.members %}
<div class="profile">
<div class="profile-text">
<h4>{{ member[1].full_name }}</h4>
<h6>Subjects: {{ member[1].subject }}</h6>
<p>{{ member[1].bio }}</p>
</div>
<img src="{{ member[1].profile }}" alt="">
</div>
{% endfor %}
</div>
</div>
</div>
</section>
<!-- <div class="profile-section">
<div class="profile-title">
<h4>ALUMNIS</h4>
</div>
<div class="profiles">
<div class="profile">
<div class="profile-text">
{% assign possibleYears = "2020,2021,2022" | split: ',' %}
{% for year in possibleYears %}
<h4>{{ year }}</h4>
{% for alumni in site.data.alumnis %}
{% if alumni[1].end == year %}
<h4>{{alumni[1].name}}</h4>
<h5>{{alumni[1].role}}</h5>
<h5>{{alumni[1].start}} - {{alumni[1].end}}</h5>
{% endif %}
{% endfor %}
{% endfor %}
</div>
</div>
</div> -->
<section id="alumni-main">
<div id="alumni-content">
<div class="alumni-section">
<div class="alumni-title">
<h4>ALUMNI</h4>
</div>
{% assign possibleYears = "2025,2024,2023,2022,2021,2020" | split: ',' %}
{% for year in possibleYears %}
<h4>{{ year }}</h4>
<div class="alumnis">
<div class="alumni">
{% for alumni in site.data.alumnis %}
{% if alumni[1].end == year %}
<div>
<h5>{{alumni[1].name}}</h5>
<p>{{alumni[1].role}}</p>
<p>{{alumni[1].start}} - {{alumni[1].end}}</p>
</div>
{% endif %}
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</div>
</section>