-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpeople.html
54 lines (52 loc) · 2.06 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
51
52
53
54
---
highlighter: none
layout: default
title: Our Staff
---
<div class="container-xxl px-0">
<figure>
<img class="w-100" style="object-fit: cover; max-height: 600px;" src="/images/team/team_photos/team-2024.jpg" alt="2024 CHTC Team Photo"/>
<figcaption class="p-1 pb-0">2024 CHTC Team Picture. <a href="/past_team_pictures.html">View old team photos⬏</a></figcaption>
</figure>
</div>
{% include get/team.liquid %}
<div class="bg-light pt-1 mt-1 pb-4">
<div class="container-xxl">
<h2 class="uw-mini-bar">Leadership</h2>
<div class="row gx-1">
{% assign sorted_team = team | where: "status", "Leadership" | sort: "name" %}
{% for member in sorted_team %}
<div class="col-12 col-lg-6">
{% include /components/team-card-promoted.html %}
</div>
{% endfor %}
</div>
<h2 class="uw-mini-bar">Staff</h2>
<div class="row gx-1">
{% assign sorted_team = team | where: "status", "Staff" | sort: "name" %}
{% for member in sorted_team %}
<div class="col-xl-2 col-md-3 col-sm-4 col-6">
{% include /components/team-card.html %}
</div>
{% endfor %}
</div>
<h2 class="uw-mini-bar">Students</h2>
<div class="row gx-1">
{% assign sorted_team = team | where: "status", "Student" | sort: "name" %}
{% for member in sorted_team %}
<div class="col-xl-2 col-md-3 col-sm-4 col-6">
{% include /components/team-card.html %}
</div>
{% endfor %}
</div>
<h2 class="uw-mini-bar">Previous Staff</h2>
<div class="row gx-1">
{% assign sorted_team = team | where: "status", "Past" | sort: "name" %}
{% for member in sorted_team %}
<div class="col-xl-2 col-md-3 col-sm-4 col-6">
{% include /components/team-card.html %}
</div>
{% endfor %}
</div>
</div>
</div>