Skip to content

Commit 7696d6c

Browse files
committed
add social formatting on people.html
1 parent 38a510f commit 7696d6c

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

_layouts/people.html

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,28 @@ <h3>Current members</h3>
5252
<img src="{{ avatar }}" />
5353
{% endif %}
5454
<h3>{{ member.name }}</h3>
55-
<a class='mem-position'>{{ member.position }}</a>
55+
<span class='mem-position'>{{ member.position }}</span>
56+
<br />
57+
{% if member.orcid %}
58+
<a target="_blank" href={{ member.orcid }}>
59+
<img width="10%" src="/assets/icons/orcid.svg">
60+
</a>
61+
{% endif %}
62+
{% if member.github %}
63+
<a target="_blank" href={{ member.github }}>
64+
<img width="10%" src="/assets/icons/github.svg">
65+
</a>
66+
{% endif %}
67+
{% if member.linkedin %}
68+
<a target="_blank" href={{ member.linkedin }}>
69+
<img width="10%" src="/assets/icons/linkedin.svg">
70+
</a>
71+
{% endif %}
72+
{% if member.bluesky %}
73+
<a target="_blank" href={{member.bluesky}}>
74+
<img width="10%" src="/assets/icons/bluesky.svg">
75+
</a>
76+
{% endif %}
5677
{% if member.bio %}
5778
<p class='mem-bio'>{{ member.bio }}</p>
5879
{% endif %}

0 commit comments

Comments
 (0)