diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2026-03-03 01:32:16 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2026-03-03 01:32:16 +0100 |
| commit | 42edb9a443cc9ea1bf6fe833ee46953a5a3da5f8 (patch) | |
| tree | 6d45e85275860ae140b640a426147a9d0da556fb /src/layouts/BlogSingleLayout.astro | |
| parent | 0e11aca148c7049c3a5ac9106fc7622ce6d90e6a (diff) | |
Add Mastodon sharing feature and update footer with Mastodon badge
Squashed commit of the following:
commit 87102bff5e03d689debd14aa91a86074b714cc2f
Author: Ariel Costas Guerrero <ariel@costas.dev>
Date: Tue Mar 3 01:30:20 2026 +0100
Improve sharing message
commit c04a63ebaaea645460780176c6ab6e3783f00362
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date: Tue Mar 3 00:01:00 2026 +0000
feat: add Mastodon integration (profile badge, share button, fediverse:creator meta tag)
Co-authored-by: arielcostas <94913521+arielcostas@users.noreply.github.com>
commit d2630b4d4ebee0493bfae117d21ce4a2fe78ffaf
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date: Mon Mar 2 23:56:42 2026 +0000
Initial plan
Diffstat (limited to 'src/layouts/BlogSingleLayout.astro')
| -rw-r--r-- | src/layouts/BlogSingleLayout.astro | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/layouts/BlogSingleLayout.astro b/src/layouts/BlogSingleLayout.astro index 70b62c2..d3396ec 100644 --- a/src/layouts/BlogSingleLayout.astro +++ b/src/layouts/BlogSingleLayout.astro @@ -47,6 +47,10 @@ const schema = { }, }, }; + +const textToEncode = `${entry.data.title}\r\n\r\n${Astro.url.toString()} por @arielcg@mastodon.social`; + +const mastodonShareUrl = `https://share.joinmastodon.org/#text=${encodeURIComponent(textToEncode)}`; --- <Layout title={entry.data.title} description={entry.data.description}> @@ -79,6 +83,8 @@ const schema = { <p> <a href="/blog/">Volver al blog</a> + ยท + <a href={mastodonShareUrl} rel="noopener noreferrer">Compartir en Mastodon</a> </p> </Layout> |
