-
Notifications
You must be signed in to change notification settings - Fork 45
/
people.html
74 lines (67 loc) · 2.13 KB
/
people.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
---
layout: page
title: People
description: "The Pangeo Community"
---
<p>Pangeo is an open group. Anyone who agrees with our
<a href="{{ site.baseurl }}/">mission and vision</a> is welcome to join.<p>
<p>To add your name to the list, fork the
<a href="https://github.com/pangeo-data/pangeo-data.github.io">source for this site</a>
on GitHub, add your details to the file <em>_data/people.yml</em>, and submit
a pull request. The easiest way to do this is to directly
<a href="https://github.com/pangeo-data/pangeo-data.github.io/blob/master/_data/people.yml">edit
the file</a> on GitHub.
</p>
<table class="table table-striped small">
{% assign people = site.data.people | sort:"last_name" %}
{% for person in people %}
<tr>
<td>
<ul class="list-inline">
<li><strong>{{ person.first_name }} {{ person.last_name}}</strong></li>
{% if person.github %}
<li>
<a href="https://github.com/{{ person.github }}">
<span class="fa-stack fa-lg">
<i class="fa fa-github fa-stack-1x"></i>
</span>
</a>
</li>
{% endif %}
{% if person.twitter %}
<li>
<a href="https://twitter.com/{{ person.twitter }}">
<span class="fa-stack fa-lg">
<i class="fa fa-twitter fa-stack-1x"></i>
</span>
</a>
</li>
{% endif %}
{% if person.email %}
<li>
<a href="mailto:{{ person.email }}">
<span class="fa-stack fa-lg">
<i class="fa fa-envelope fa-stack-1x"></i>
</span>
</a>
</li>
{% endif %}
{% if person.website %}
<li>
<a href="{{ person.website }}">
<span class="fa-stack fa-lg">
<i class="fa fa-external-link fa-stack-1x"></i>
</span>
</a>
</li>
{% endif %}
</ul>
<em>{{ person.institution }}</em>
<br />
{% for tag in person.tags %}
<mark><a>{{ tag }}</a></mark>
{% endfor %}
</td>
</tr>
{% endfor %}
</table>