-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathteam.html
More file actions
39 lines (37 loc) · 1.43 KB
/
team.html
File metadata and controls
39 lines (37 loc) · 1.43 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
---
title: Our Team
description: >-
We've assembled a team of talented developers with significant experience in the realm of computational chemistry. <br><br>
OpenFE Staff are usually employed by the <a href="https://omsf.io/">Open Molecular Software Foundation</a> and paid via the Open Free Energy Fund, while Core Developers are employed elsewhere but coordinate their efforts closely with the staff.
---
<ul class="staff">
{% assign sorted_team = site.team | sort: "order" %}
{% for person in sorted_team %}
<li>
<div class="square-image"><img src="{% include relative-src.html src=person.image_path %}" alt="{{ person.name }}"/></div>
<div class="name">
{{ person.name }}
</div>
<div class="position">{{ person.position }}</div>
{%if person.affiliation %}
<div class="affiliation">{{ person.affiliation }}</div>
{% endif %}
{% if person.github %}
<div class="github">
<a target="_blank" href="https://github.com/{{ person.github }}" class="GitHub-icon">
{% include social-icon.html icon='GitHub' %}
{{ person.github }}
</a>
</div>
{% endif %}
{% if person.scholar %}
<div class="scholar">
<a href="https://scholar.google.com/{{ person.scholar }}">Google Scholar</a>
</div>
{% endif %}
<div class="blurb">
{{ person.blurb }}
</div>
</li>
{% endfor %}
</ul>