-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.html
More file actions
39 lines (29 loc) · 1.23 KB
/
about.html
File metadata and controls
39 lines (29 loc) · 1.23 KB
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
---
layout: page
title: "About"
description: "Collaborators"
header-img: "img/home-bg.png"
---
<hr>
{% for member in site.data.members %} {% if member.visible == true %}
<img src="{{ member.img }}" style="margin-top:0px; margin-bottom:5px; margin-right:10px; float:left; width:150px !important">
<h1>{{ member.name }}</h1>
<h2>{{ member.role }}</h2>
{% if member.github %}
<span class="social-share-googleplus"><a href="https://github.com/{{ member.github }}" title="Github"><i class="fa fa-github"></i> Github</a></span>
{% endif %}
{% if member.linkedin %}
<span class="social-share-googleplus"><a href="https://www.linkedin.com/in/{{ member.linkedin }}" title="LinkedIn"><i class="fa fa-linkedin"></i> LinkedIn</a></span>
{% endif %}
{% if member.gplus %}
<span class="social-share-googleplus"><a href="{{ member.gplus }}" title="Google Plus"><i class="fa fa-google-plus"></i> Google Plus</a></span>
{% endif %}
{% if member.url %}
<span class="social-share-googleplus"><a href="{{ member.url }}" title="Google Plus"><img src="{{ "/img/icons/url-icon.png"| prepend: site.baseurl }}" style="height:20px">Website</a></span>
{% endif %}
</br>
{% if member.bio %}
{{ member.bio }}
{% endif %}
<hr>
{% endif %}{% endfor %}