aboutsummaryrefslogtreecommitdiff
path: root/src/layouts
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-04-29 08:43:32 +0200
committerAriel Costas Guerrero <ariel@costas.dev>2025-04-29 08:43:32 +0200
commit8cb952f30798d545f5d0f0690ab02df7eb978a74 (patch)
treebd3aa58dbdf7d209fcba082331145f25f1cc8636 /src/layouts
parentb1b587e52e2dff50b3f2bfb9ceaa973b7064b8ee (diff)
Fix OG url
Diffstat (limited to 'src/layouts')
-rw-r--r--src/layouts/Layout.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index 97115b5..f1c37c9 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -32,7 +32,7 @@ const { title, description, empty } = Astro.props;
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:type" content="website" />
- <meta property="og:url" content={Astro.url} />
+ <meta property="og:url" content={Astro.url.toString().replace(".html", "")} />
<meta property="og:image" content="/favicon.png" />
<meta name="twitter:card" content="summary" />