forked from projectpages/project-pages
-
Notifications
You must be signed in to change notification settings - Fork 1
/
who.html
111 lines (80 loc) · 2.64 KB
/
who.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
layout: page
title: "Who am I?"
description: "Une piece du je de l'ego."
---
<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.email %}
<a href="mailto:{{ member.email }}" Title="Email">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-envelope fa-stack-1x fa-inverse"></i>
</span>
</a>
{% endif %}
{% if member.twitter_username %}
<a href="https://twitter.com/{{ member.twitter_username }}" title="Twitter">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
{% endif %}
{% if member.facebook_username %}
<a href="https://www.facebook.com/{{ member.facebook_username }}" title="Facebook">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
{% endif %}
{% if member.github_username %}
<a href="https://github.com/{{ member.github_username }}">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
{% endif %}
{% if member.gplus_username %}
<a href="https://plus.google.com/+{{ member.gplus_username }}" title="Google+">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-google-plus fa-stack-1x fa-inverse"></i>
</span>
</a>
{% endif %}
{% if member.linkedin_username %}
<a href="https://www.linkedin.com/in/{{ member.linkedin_username }}">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
</span>
</a>
{% endif %}
{% if member.url %}
<a href="{{ member.url }}" title="Homepage">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-home fa-stack-1x fa-inverse"></i>
</span>
</a>
{% endif %}
{% if member.orcid_username %}
<a href="https://orcid.org/{{ member.orcid_username }}" title="Orcid">
<span class="fa-stack fa-lg">
<!--<i class="fa fa-circle fa-stack-2x"></i>-->
<i class="fa fa-stack-2x"><img src="{{ "/img/icons/id-icon.png" | prepend: site.baseurl }}" style="height:51px; padding-bottom:6px;"></i>
</span>
</a>
{% endif %}
</br>
{% if member.bio %}
{{ member.bio }}
{% endif %}
<hr>
{% endif %}{% endfor %}