-
Notifications
You must be signed in to change notification settings - Fork 9
/
team.html
66 lines (65 loc) · 1.42 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
---
layout: page
title: Team
permalink: /team/
---
{% for member in site.data.team %}
<div itemscope itemtype="http://schema.org/Person">
<h3 itemprop="name">{{ member.name }}</h3>
{% if member.avatar %}
<figure>
<img
itemprop="image"
src="{{ member.avatar }}"
alt="{{ member.name }}">
</figure>
{% endif %}
{% if member.bio %}
<p>
{{ member.bio }}
</p>
{% endif %}
<ul>
{% if member.website %}
<li>
Website:
<a itemprop="sameAs" href="{{ member.website }}">
{{ member.website }}
</a>
</li>
{% endif %}
{% if member.github %}
<li>
GitHub:
<a itemprop="sameAs" href="https://github.com/{{ member.github }}">
{{ member.github }}
</a>
</li>
{% endif %}
</ul>
</div>
{% endfor %}
{% if site.github.contributors %}
<h2>about.liveplant.io Contributors</h2>
<table class="table">
<caption>Sorted by the number of commits per contributor in descending order.</caption>
<thead>
<tr>
<th>Name</th>
<th>Contributions</th>
</tr>
</thead>
<tbody>
{% for contributor in site.github.contributors %}
<tr>
<td>
<a href="{{ contributor.html_url }}">
{{ contributor.login }}
</a>
</td>
<td>{{ contributor.contributions }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}