forked from BAMeScience/BAMeScience.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
16 lines (15 loc) · 731 Bytes
/
team.html
File metadata and controls
16 lines (15 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
title: Our team
description: >-
We are a new, young team of computer scientists, bioinformaticians, mathematicians, engineers and more!
---
<p class="editor-link" style="text-align: center;"><a href="cloudcannon:collections/_staff_members/" class="btn"><strong>✎</strong> Manage Staff members</a></p>
<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>