-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeople.html
62 lines (62 loc) · 2.32 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
55
56
57
58
59
60
61
62
---
layout: particles_header
title: People
lead: Meet the GMLG staff
description: Meet the people in GMLG.
---
{% assign people = site.data.people %}
<!-- Leader section-->
<section>
<div class="container px-4">
<div class="row g-4 justify-content-center align-items-center text-center text-md-start">
{% assign leader = people | where: "group", "leader" | first %}
{% include leader_item.html leader=leader %}
</div>
</div>
</section>
<!-- Team section-->
<section class="bg-light">
<div class="container px-4">
<div class="row g-4 justify-content-center align-items-top text-center">
<div class="col-12"><h2>Research Team</h2></div>
{% assign team = people | where: "group", "team" %}
{% for person in team %}
{% include people_item.html person=person %}
{% endfor %}
</div>
<div class="row g-4 mt-4 justify-content-center align-items-top text-center">
<div class="col-12"><h2>Affiliate Senior Researchers</h2></div>
{% assign affiliate = people | where: "group", "affiliate" %}
{% for person in affiliate %}
{% include people_item.html person=person %}
{% endfor %}
</div>
</div>
</section>
<!-- External section-->
<section>
<div class="container px-4">
<div class="row g-4 justify-content-center align-items-top text-center">
<div class="col-12"><h2>External</h2></div>
{% assign external = people | where: "group", "external" %}
{% for person in external %}
{% include people_item.html person=person %}
{% endfor %}
</div>
</div>
</section>
<!-- Alumni section-->
<section class="bg-light">
<div class="container px-4">
<div class="row g-4 justify-content-center align-items-top">
<div class="col-12 text-center"><h2>Alumni</h2></div>
<ul>
{% assign alumni = people | where: "group", "alumni" %}
{% for person in alumni %}
<li><a href="{{person.links.website}}">{{person.name}} <strong>{{person.surname}}</strong></a>, {{person.now}}.<br>
{{person.description}} ({{person.period}})</li>
{% endfor %}
</ul>
</div>
</div>
</section>