diff options
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> |
