forked from CSSUoB/cssuob.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommittee-archive.html
38 lines (36 loc) · 1.02 KB
/
committee-archive.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
---
layout: page
title: Committee Archive
styles:
- /css/committee.css
scripts:
- /js/fadein.js
---
<h1>Committee Archive</h1>
{% for committees in site.data.committee %}
{% assign committee = committees[1] %}
{% unless committee.current == true %}
<h2>{{ committee.academic_year}}</h2>
<div class="person-container fadein-container">
{% for person in committee.people %}
<div class="person fadein hidden">
<img class="picture" src="{{ person.picture | relative_url }}" alt="picture of {{ person.name }}">
<div class="details">
<span class="name">{{ person.name }}</span>
{% if person.pronouns %}
<span class="pronouns">
{{person.pronouns}}
</span>
{% endif %}
<p class="role">
{{ person.role }}
</p>
<p class="bio">
{{ person.bio }}
</p>
</div>
</div>
{% endfor %}
{% endunless %}
</div>
{% endfor %}