-
Notifications
You must be signed in to change notification settings - Fork 1
/
2022-2023-committee.html
40 lines (39 loc) · 1.45 KB
/
2022-2023-committee.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
---
layout: page
---
<!-- Team -->
<section class="page-section" id="{{ site.data.sitetext[site.locale].team.section | default: "team" }}">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">{{ site.data.sitetext[site.locale].committee.years[0].year}} Committee</h2>
<h3 class="section-subheading text-muted">{{ site.data.sitetext[site.locale].team.text }}</h3>
</div>
</div>
<div class="row">
{% for person in site.data.sitetext[site.locale].committee.years[0].people %}
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="{{ person.image }}" alt="">
<h4>{{ person.name }}</h4>
<p class="text-muted">{{ person.role }}</p>
<ul class="list-inline social-buttons">
{% for network in person.social %}
<li class="list-inline-item">
<a href="mailto:{{ network.url }}">
<i class="{{ network.icon }}"></i>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
{% endfor %}
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<div class="large text-muted">{{ site.data.sitetext[site.locale].team.subtext | markdownify }}</div>
</div>
</div>
</div>
</section>