aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/BlogSingleLayout.astro
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-07-14 16:34:22 +0200
committerAriel Costas Guerrero <ariel@costas.dev>2025-07-14 16:34:22 +0200
commita2992b2a38cd236693211cd791e162719f43f9d9 (patch)
treeedaea8c11a633ce2eb23ec971e7d0390e190941b /src/layouts/BlogSingleLayout.astro
parent9b2638a6c4f3a3b3ffc12e12d79dc4ae73a911e3 (diff)
Fix links and improve descriptions across blog and portfolio layouts
Diffstat (limited to 'src/layouts/BlogSingleLayout.astro')
-rw-r--r--src/layouts/BlogSingleLayout.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layouts/BlogSingleLayout.astro b/src/layouts/BlogSingleLayout.astro
index 0c3b934..44fe55c 100644
--- a/src/layouts/BlogSingleLayout.astro
+++ b/src/layouts/BlogSingleLayout.astro
@@ -49,7 +49,7 @@ const schema = {
};
---
-<Layout title={entry.data.title} description={entry.data.metaDescription}>
+<Layout title={entry.data.title} description={entry.data.description}>
<script
is:inline
type="application/ld+json"
@@ -78,7 +78,7 @@ const schema = {
<Content />
<p>
- <a href="/blog">Volver al blog</a>
+ <a href="/blog/">Volver al blog</a>
</p>
</Layout>