Skip to content

Commit ef01863

Browse files
authored
feat: add Bluesky social network to the contact sidebar (#503)
1 parent b93b4e0 commit ef01863

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

_data/data.yml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ sidebar:
2424
telegram: # add your nickname without '@' sign
2525
gitlab:
2626
bitbucket:
27+
bluesky: '@jekyllrb.bsky.social' # Specify your full Bluesky handle
2728
twitter: '@jekyllrb'
2829
stack-overflow: # Number/Username, e.g. 123456/alandoe
2930
codewars:

_includes/contact.html

+8-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,14 @@
7272
<a href="https://twitter.com/{{ sidebar.twitter }}" target="_blank">{{ sidebar.twitter }}</a>
7373
</li>
7474
{% endif %}
75-
75+
76+
{% if sidebar.bluesky %}
77+
{% assign bluesky_handle = sidebar.bluesky | remove: '@' %}
78+
<li class="bluesky"><i class="fab fa-bluesky"></i>
79+
<a href="https://bsky.app/profile/{{ bluesky_handle }}" target="_blank">{{ sidebar.bluesky }}</a>
80+
</li>
81+
{% endif %}
82+
7683
{% if sidebar.mastodon %}
7784
{% assign mastodon_handle = sidebar.mastodon | split: '/' %}
7885
<li class="mastodon"><i class="fab fa-mastodon"></i>

0 commit comments

Comments
 (0)