Skip to content

Commit fb8afe5

Browse files
Updated person shortcode
1 parent 00cf0a7 commit fb8afe5

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

layouts/shortcodes/person.html

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,39 @@
1010
{{ with $person.github }}
1111
<li>
1212
<a href="https://github.com/{{ . }}">
13-
<img src="/github-mark.svg" alt="GitHub" />
13+
<img src="/icons/github.svg" alt="GitHub" />
1414
</a>
1515
</li>
1616
{{end }}
1717

1818
{{ with $person.orcid }}
1919
<li>
2020
<a href="{{ . }}">
21-
<img src="/orchid-id.svg" alt="ORCHID" />
21+
<img src="/icons/orcid.svg" alt="ORCID" />
2222
</a>
2323
</li>
2424
{{end }}
2525

26+
{{ with $person.bluesky }}
27+
<li>
28+
<a href="https://bsky.app/profile/{{ . }}">
29+
<img src="/icons/x.svg" alt="Bluesky" />
30+
</a>
31+
</li>
32+
{{ end }}
33+
2634
{{ with $person.twitter }}
2735
<li>
2836
<a href="https://twitter.com/{{ . }}">
29-
<img src="/logo-x-black.png" alt="X (formerly Twitter)" />
37+
<img src="/icons/x.svg" alt="X (formerly Twitter)" />
3038
</a>
3139
</li>
3240
{{ end }}
3341

3442
{{ with $person.web }}
3543
<li>
3644
<a href="{{ . }}">
37-
<img src="/home.png" alt="Homepage" />
45+
<img src="/icons/home.svg" alt="Homepage" />
3846
</a>
3947
</li>
4048
{{ end }}

0 commit comments

Comments
 (0)