-
Notifications
You must be signed in to change notification settings - Fork 9
/
people.html
63 lines (53 loc) · 2.26 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
63
---
layout: page
title: People
permalink: /people
id: people
order: 2
---
{% assign i18n = site.data[site.active_lang].people_page %}
{% assign faculty = site.data.people.faculty%}
{% assign postdocs = site.data.people.people | where_exp: "person", "person.category == 'Postdoc'" | sort: "name"%}
{% assign visitors = site.data.people.people | where_exp: "person", "person.category == 'visiting'" | sort: "name"%}
{% assign phds_by_year = site.data.people.people | where_exp: "person", "person.category == 'PhD'" | group_by: "start" %}
{% assign collaborators = site.data.people.people | where_exp: "person", "person.category == 'Collaborator'"%}
{% assign mscs = site.data.people.people | where_exp: "person", "person.category == 'MSc'" | sort: "name"%}
<section class="content-wrapper professor-section">
<h2 class="section-title">{{ i18n.professor_section_title | default: "Faculty professors" }}</h2>
<div class="bare-list professors">
{% for item in faculty %}
{% include team/card-professor.html item=item %}
{% endfor %}
</div>
</section>
<section class="content-wrapper postdoc-section">
<h2 class="section-title">{{ i18n.postdoc_section_title | default: "Postdocs & Researchers" }}</h2>
<div class="bare-list postdocs">
{% for postdoc in postdocs %}
{% include team/card-researcher.html item=postdoc %}
{% endfor %}
</div>
</section>
<section class="content-wrapper phd-section">
<h2 class="section-title">{{ i18n.phd_section_title | default: "PhD students" }}</h2>
<div class="phd-students">
{% for year in phds_by_year %}
{% assign phds = year.items | sort: "name" %}
{% for phd in phds %}
{% include team/card-student-phd.html item=phd %}
{% endfor %}
{% endfor %}
</div>
</section>
<section class="content-wrapper master-section">
<h2 class="section-title">{{ i18n.master_section_title | default: "Master's students" }}</h2>
<ul class="bare-list master-students">
{% for msc in mscs %}
{% include team/card-student-master.html item=msc %}
{% endfor %}
</ul>
</section>
<!-- {% if collaborators and collaborators.size != 0 %}
{% include team/printPeople-circles.html people=collaborators title="Visiting Scholars and Scientific collaborators" %}
{% endif %} -->
{% include team/printAlumni.html %}