|
| 1 | +--- |
| 2 | +layout: page |
| 3 | +title: Contributors |
| 4 | +tagline: Behind the Scenes |
| 5 | +--- |
| 6 | + |
| 7 | +{% for person in site.categories.contributors reversed %} |
| 8 | +<sectionid="{{ person.name }}"> |
| 9 | + {% if person.image %} |
| 10 | +<div> |
| 11 | +<spanclass="image left"> |
| 12 | +<imgsrc="images/contributors/{{person.image}}"alt=""/> |
| 13 | +</span> |
| 14 | +</div> |
| 15 | + {% endif %} |
| 16 | +<div> |
| 17 | +<h2>{{ person.name }}</h2> |
| 18 | +<div>{{ person.content }}</div> |
| 19 | +<ulclass="icons"> |
| 20 | + {% for socloc in person.social %} {% if socloc[1] %} {% if socloc[0] == 'email' %} |
| 21 | +<li><ahref="{{ socloc[1] }}"class="icon fa-envelope-o"><spanclass="label">E-mail</span></a></li> |
| 22 | + {% else %} |
| 23 | +<li><atarget="_blank"href="{{ socloc[1] }}"class="icon fa-{{ socloc[0] }}"><spanclass="label">{{ socloc[0] }}</span></a></li> |
| 24 | + {% endif %} {% endif %} {% endfor %} |
| 25 | +</ul> |
| 26 | +</div> |
| 27 | +</section> |
| 28 | +{% endfor %} |
| 29 | + |
| 30 | +<hr/> |
| 31 | +<section> |
| 32 | +<p>Want to join this list? Send an email to see how you can help.</p> |
| 33 | + |
| 34 | +<p>Also checkout the<ahref="https://github.com/coderoad/atom-coderoad/blob/master/CONTRIBUTING.md">contributing guidelines</a>.</p> |
| 35 | +</section> |