-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathteam.html
36 lines (34 loc) · 1.07 KB
/
team.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
---
title: Our team
description: >-
We've assembled a team of talented developers with significant experience
in the realm of computational chemistry.
---
<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.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>