-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy paththe-team.html
59 lines (56 loc) · 1.99 KB
/
the-team.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
---
title: The Team
layout: default
keywords: 'the-team'
custom_css:
- assets/css/the-team.css
---
<p>
Science Olympiad at MIT is an undergraduate student group founded in Fall
2013 by Connor Duffy (2017) and Kenny Friedman (2017) with the mission of
improving the Science Olympiad experience of high school students in
Massachusetts and the greater northeast region. MIT Science Olympiad is
entirely run by a team of MIT undergraduate
students. We work around the year both within MIT and in the Massachusetts
area to promote Science Olympiad opportunities for students. The MIT
Invitational would not be possible without the dedication and effort of our
members.
</p>
{% for team in site.data.pc-members %}
<h2>{{ team.name }}</h2>
<div class="tile is-ancestor team-card">
{% for member in team.members %}
<div class="tile is-parent is-6">
<div class="card is-child">
<div class="card-image">
<div class="overlay-container">
<figure class="image is-4by3">
<img src="./assets/images/headshots/{{ member.image_name }}" alt="{{ member.name }} headshot">
</figure>
<p class="is-size-6 is-size-7-touch">{{ member.description }}</p>
</div>
</div>
<div class="card-content">
<div class="title is-5"> {{ member.name }} </div>
<div class="subtitle"> {{ member.year }} </div>
<p class="is-size-6 is-size-7-mobile mobile-only-text">{{ member.description }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
{% endfor %}
<h2>Past Tournament Directors</h2>
<ul>
<li>2025: Amber Luo, Derek Chen</li>
<li>2024: Melody Yu, Amber Luo</li>
<li>2023: Julie Meng, Melody Yu</li>
<li>2022: Yoshi Saito, Julie Meng</li>
<li>2021: Thomas Xiong, Yoshi Saito</li>
<li>2020: Alice Lin, Thomas Xiong</li>
<li>2019: Joshua Segaran, Alice Lin</li>
<li>2018: Katie Shade, Joshua Segaran</li>
<li>2017: Stephen Tang, Katie Shade</li>
<li>2016: Connor Duffy, Stephen Tang</li>
<li>2015: Connor Duffy</li>
</ul>