-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathteam-bio.html
More file actions
25 lines (23 loc) · 1.4 KB
/
team-bio.html
File metadata and controls
25 lines (23 loc) · 1.4 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
<div class='social-icons'>
{% if page.email %}
<a href="mailto:{{ page.email | encode_email }}"><img class='social-icon email' src="{{ site.baseurl }}/images/icons/email-gold.svg" /></a>
{% endif %}
{% if page.site %}
<a href="{{ page.site }}" target="_blank"><img class='social-icon web' src="{{ site.baseurl }}/images/icons/web-gold.svg" /></a>
{% endif %}
{% if page.resume %}
<a href="{{ page.resume }}" target="_blank"><img class='social-icon resume' src="{{ site.baseurl }}/images/icons/resume-gold.svg" /></a>
{% endif %}
{% if page.stack-overflow %}
<a href="{{ page.stack-overflow }}" target="_blank"><img class='social-icon stack' src="{{ site.baseurl }}/images/icons/stack-overflow-gold.svg" /></a>
{% endif %}
{% if page.github %}
<a href="{{ page.github }}" target="_blank"><img class='social-icon github' src="{{ site.baseurl }}/images/icons/github-gold.svg" /></a>
{% endif %}
{% if page.linkedin %}
<a href="{{ page.linkedin }}" target="_blank"><img class='social-icon linkedin' src="{{ site.baseurl }}/images/icons/linkedin-gold.svg" /></a>
{% endif %}
{% if page.twitter %}
<a href="{{ page.twitter }}" target="_blank"><img class='social-icon twitter' src="{{ site.baseurl }}/images/icons/twitter-gold.svg" /></a>
{% endif %}
</div>