-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathteam.html
More file actions
33 lines (31 loc) · 1.08 KB
/
team.html
File metadata and controls
33 lines (31 loc) · 1.08 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
---
title: Our team
description: We are an interdisciplinary and diverse team of computer scientists, bioinformaticians, mathematicians, engineers and more!
---
<ul class="staff">
{% for person in site.staff_members %}
<li>
<div class="square-image"><img src="{% include relative-src.html src=person.image_path %}"
alt="{{ person.name }}" /></div>
<div class="name"><a target="_self"
href="{{ site.baseurl }}/team/{{ person.first_name_lower_case }}/index.html">{{ person.name }}</a></div>
<div class="position">{{ person.position }}</div>
</li>
{% endfor %}
</ul>
<div class="divider">
<h2>Alumni</h2>
<p class="subtext">Former members of the eScience Group.</p>
</div>
<ul class="staff">
{% for person in site.alumni %}
<li>
<div class="square-image"><img src="{% include relative-src.html src=person.image_path %}"
alt="{{ person.name }}" /></div>
<div class="name"><a target="_self"
href="{{ site.baseurl }}/team/{{ person.first_name_lower_case }}/index.html">{{ person.name }}</a>
</div>
<div class="position">{{ person.position }}</div>
</li>
{% endfor %}
</ul>