-
Notifications
You must be signed in to change notification settings - Fork 21
/
team.html
77 lines (75 loc) · 3.45 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
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
---
layout: page
title: Team
subtitle: The Caporaso Lab is an ever-evolving team of biologists, professional research software engineers, and students of those disciplines.
permalink: /team/
color: dodgerblue
---
<div class='team'>
{% for person in site.data.team %}
<div class='person'>
{% if person.pic %}
<img src='{{ site.baseurl }}/assets/team/{{ person.pic }}'/>
{% else %}
<a class='fa fa-user-secret' title='{{ person.name }} has not posted a picture' style='font-size: 200px; text-decoration:none;'></a>
{% endif %}
<ul class='details'>
<li class='details__attribute details--name'>{{ person.name }}</li>
<li class='details__attribute details--title'>{{ person.title }}</li>
<li class='details__attribute details--social'>
{% if person.cv %}
<a href="{{ person.cv }}" target='_blank' title="{{person.name}}'s Curriculum Vitae"><i class="fa fa-graduation-cap"></i></a>
{% endif %}
{% if person.twitter %}
<a href="https://twitter.com/{{person.twitter}}" target='_blank' title="{{person.name}}'s Twitter"><i class="fa fa-twitter"></i></a>
{% endif %}
{% if person.github %}
<a href="https://github.com/{{person.github}}" target='_blank' title="{{person.name}}'s GitHub"><i class="fa fa-github"></i></a>
{% endif %}
{% if person.site %}
<a href="{{person.site}}" target='_blank' title="{{person.name}}'s Website'"><i class="fa fa-link"></i></a>
{% endif %}
</li>
{% if person.interests %}
<li class='details__attribute details--interests'>
{% for interest in person.interests %}
<span class='attribute__interest'>{{interest}}</span><br />
{% endfor %}
</li>
{% endif %}
</ul>
</div>
{% endfor %}
<span class='team__stretch'></span>
</div>
<h1>Former Members</h1>
<div class='team'>
{% for person in site.data.former_team %}
<div class='person'>
{% if person.pic %}
<img src='{{ site.baseurl }}/assets/team/{{ person.pic }}'/>
{% else %}
<a class='fa fa-user-secret' title='{{ person.name }} has not posted a picture' style='font-size: 200px; text-decoration:none;'></a>
{% endif %}
<ul class='details'>
<li class='details__attribute details--name'>{{ person.name }}</li>
<li class='details__attribute details--title'>{{ person.title }}</li>
<li class='details__attribute details--social'>
{% if person.cv %}
<a href="{{ person.cv }}" target='_blank' title="{{person.name}}'s Curriculum Vitae"><i class="fa fa-graduation-cap"></i></a>
{% endif %}
{% if person.twitter %}
<a href="https://twitter.com/{{person.twitter}}" target='_blank' title="{{person.name}}'s Twitter"><i class="fa fa-twitter"></i></a>
{% endif %}
{% if person.github %}
<a href="https://github.com/{{person.github}}" target='_blank' title="{{person.name}}'s GitHub"><i class="fa fa-github"></i></a>
{% endif %}
{% if person.site %}
<a href="{{person.site}}" target='_blank' title="{{person.name}}'s Website'"><i class="fa fa-link"></i></a>
{% endif %}
</li>
</ul>
</div>
{% endfor %}
<span class='team__stretch'></span>
</div>