-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontributors.html
35 lines (32 loc) · 1.13 KB
/
contributors.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
---
layout: page
title: Contributors
tagline: Behind the Scenes
---
{% for person in site.categories.contributors reversed %}
<section id="{{ person.name }}">
{% if person.image %}
<div>
<span class="image left">
<img src="images/contributors/{{person.image}}" alt="" />
</span>
</div>
{% endif %}
<div>
<h2>{{ person.name }}</h2>
<div>{{ person.content }}</div>
<ul class="icons">
{% for socloc in person.social %} {% if socloc[1] %} {% if socloc[0] == 'email' %}
<li><a href="{{ socloc[1] }}" class="icon fa-envelope-o"><span class="label">E-mail</span></a></li>
{% else %}
<li><a target="_blank" href="{{ socloc[1] }}" class="icon fa-{{ socloc[0] }}"><span class="label">{{ socloc[0] }}</span></a></li>
{% endif %} {% endif %} {% endfor %}
</ul>
</div>
</section>
{% endfor %}
<hr />
<section>
<p>Looking to adapt your favorite coding language for CodeRoad? Interested in adding new features? Learn more about how you can get on this list.</p>
<p>Also checkout the <a href="https://github.com/coderoad/atom-coderoad/blob/master/CONTRIBUTING.md">contributing guidelines</a>.</p>
</section>