forked from CHTC/chtc-website-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
people.html
50 lines (48 loc) · 1.48 KB
/
people.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
---
highlighter: none
layout: content
title: Our Staff
---
<div class="uw-full-row uw-pad-b-l">
<div class="uw-row">
<div class="uw-col">
<h2 class="uw-mini-bar">2021 Staff Picture</h2>
<img src="images/CHTC_Team_Photo_2021.jpg" alt="Team Zoom Photograph">
</div>
</div>
</div>
<div class="uw-full-row uw-pad-b-l uw-light-grer-bg">
<div class="uw-row">
<div class="uw-col">
<h2 class="uw-mini-bar">Leadership</h2>
</div>
</div>
<div class="uw-row">
{% assign sorted_team = site.data.team | where: "status", "Leadership" | sort: "name" %}
{% for member in sorted_team %}
{% include /components/team-card-promoted.html %}
{% endfor %}
</div>
<div class="uw-row">
<div class="uw-col">
<h2 class="uw-mini-bar">Staff</h2>
</div>
</div>
<div class="uw-row">
{% assign sorted_team = site.data.team | where: "status", "Staff" | sort: "name" %}
{% for member in sorted_team %}
{% include /components/team-card.html %}
{% endfor %}
</div>
<div class="uw-row">
<div class="uw-col">
<h2 class="uw-mini-bar">Students</h2>
</div>
</div>
<div class="uw-row">
{% assign sorted_team = site.data.team | where: "status", "Student" | sort: "name" %}
{% for member in sorted_team %}
{% include /components/team-card.html %}
{% endfor %}
</div>
</div>