-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
98 lines (94 loc) · 2.77 KB
/
team.html
File metadata and controls
98 lines (94 loc) · 2.77 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
title: Team
link: team
layout: default
main-team:
- name: Alexandra Silva
title: Senior Lecturer
affiliation: University College London
picture: alex.jpg
webpage: http://www.alexandrasilva.org
- name: Matteo Sammartino
title: Research Associate
affiliation: Royal Holloway University of London, University College London
webpage: https://matteosammartino.com/
picture: matteo.jpg
- name: Gerco van Heerdt
title: Research Fellow
affiliation: University College London
picture: gerco.jpg
webpage: http://gerco.me/
- name: Jurriaan Rot
title: Assistant Professor
affiliation: Radboud University
picture: jurriaan.jpg
webpage: http://jurriaan.me/
- name: Joshua Moerman
title: Postdoctoral Researcher
affiliation: Radboud University
picture: joshua.jpg
webpage: http://joshuamoerman.nl
- name: Maverick Chardet
title: Master's Student
affiliation: ENS Lyon
picture: maverick.jpg
collaborators:
- name: Clemens Kupke
title: Lecturer
affiliation: University of Strathclyde
picture: clemens.jpg
webpage: https://personal.cis.strath.ac.uk/clemens.kupke/
- name: Bartek Klin
title: Professor
affiliation: Warsaw University
picture: bartek.jpg
webpage: https://www.mimuw.edu.pl/~klin/
- name: Michał Szynwelski
title: Ph.D. Student
affiliation: Warsaw University
picture: michal.jpg
webpage: https://www.mimuw.edu.pl/~szynwelski/
- name: Tobias Kappé
title: Postdoctoral Associate
affiliation: Cornell University
picture: tobias.jpg
webpage: https://tobias.kap.pe
---
<h2>Main team</h2>
<div class="team-div">
{% for member in page.main-team %}
{% if member.webpage %}
<a href="{{ member.webpage }}" target="_blank">
{% endif %}
<div class="panel panel-info team-panel col">
<div class="panel-heading">{{ member.name }}</div>
<div class="panel-body">
<img src="images/team/{{ member.picture }}" class="img-responsive center-block">
</div>
<div class="panel-footer">
<span class="member-title">{{ member.title }}</span>
<span class="member-affiliation">{{ member.affiliation }}</span>
</div>
</div>
{% if member.webpage %}
</a>
{% endif %}
{% endfor %}
</div>
<h2>Collaborators</h2>
<div class="team-div">
{% for member in page.collaborators %}
<a href="{{ member.webpage }}">
<div class="panel panel-info team-panel col">
<div class="panel-heading">{{ member.name }}</div>
<div class="panel-body">
<img src="images/team/{{ member.picture }}" class="img-responsive center-block">
</div>
<div class="panel-footer">
<span class="member-title">{{ member.title }}</span>
<span class="member-affiliation">{{ member.affiliation }}</span>
</div>
</div>
</a>
{% endfor %}
</div>