From 161a2f2b7df09f86f5cc5b702e621ae87c6ae082 Mon Sep 17 00:00:00 2001 From: Gabor Babicz Date: Mon, 9 Dec 2024 09:32:56 +0100 Subject: [PATCH] Add Bluesky handle support to author profiles --- src/authors/paoloricciuti.md | 1 + src/components/author-socials.njk | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/src/authors/paoloricciuti.md b/src/authors/paoloricciuti.md index 3ca88f27e5..25592932bc 100644 --- a/src/authors/paoloricciuti.md +++ b/src/authors/paoloricciuti.md @@ -3,5 +3,6 @@ name: "Paolo Ricciuti" github: paoloricciuti twitter: paoloricciuti linkedin: paolo-ricciuti-571a91187 +bluesky: paolo.ricciuti.me bio: 'Senior Software Engineer at Mainmatter, Co-creator of sveltelab.dev' --- diff --git a/src/components/author-socials.njk b/src/components/author-socials.njk index 8ce43983fd..2d78ab14f6 100644 --- a/src/components/author-socials.njk +++ b/src/components/author-socials.njk @@ -29,6 +29,14 @@ {% endif %} + {% if author.data.bluesky %} +
  • + + {% include 'svg/social-bluesky.njk' %} + {{ author.data.bluesky }} on Bluesky + +
  • + {% endif %} {% endif %} {%- endmacro -%}