forked from bitcoinops/bitcoinops.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontributors.html
More file actions
18 lines (15 loc) · 978 Bytes
/
contributors.html
File metadata and controls
18 lines (15 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div id="{{include.id}}">
<ul class="contributors n-column-list">
{% for contributor in contributors %}
{% assign avatar=contributor.avatar %}
{% unless contributor.avatar contains 'https://' %}{% capture avatar %}/img/team/{{contributor.avatar}}{% endcapture %}{% endunless %}
<li>
<img src="{{ avatar }}" class="bio-photo" width="150" height="150" alt="{{ contributor.name }}" title="{{ contributor.name }}">
<h3 itemprop="name">{{ contributor.name }}</h3>
<p class="author-role">{% if contributor.other_affiliation %}{{ contributor.other_affiliation }}{% endif %}</p>
<i class="fa fa-lg fa-github-square" rel="nofollow"></i> <a href="https://github.com/{{ contributor.github }}" class="author-github" target="_blank">GitHub</a>
{% if contributor.quote %}<p class="sponsor-quote">{{ contributor.quote }} </p>{% endif %}
</li>
{% endfor %}
</ul>
</div>