Skip to content

Commit

Permalink
Bluesky URL prefix should not be appended (#2856)
Browse files Browse the repository at this point in the history
This PR modifies

- `_config.yml` to rename `bluesky_url` into `bluesky_id`
- `_includes/social.liquid` to handle the renaming in the display of
social media icons
  • Loading branch information
gdalle authored Nov 25, 2024
1 parent 9674cfc commit c170eaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/social.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
<a href="https://facebook.com/{{ site.facebook_id }}" title="Facebook"><i class="fa-brands fa-facebook"></i></a>
{% endif %}
{% if site.bluesky_url %}
<a href="https://bsky.app/profile/{{ site.bluesky_url }}" title="Bluesky"><i class="fa-brands fa-bluesky"></i></a>
<a href="{{ site.bluesky_url }}" title="Bluesky"><i class="fa-brands fa-bluesky"></i></a>
{% endif %}
{% if site.youtube_id %}
<a href="https://youtube.com/@{{ site.youtube_id }}" title="YouTube"><i class="fa-brands fa-youtube"></i></a>
Expand Down

0 comments on commit c170eaf

Please sign in to comment.