From 1ffbf71a057e8789fd6471e319a9a16c4ce031e1 Mon Sep 17 00:00:00 2001
From: LarsVomMars
Date: Fri, 27 Dec 2024 13:01:37 +0100
Subject: update urls

---
 src/pages/blog/[event]/index.astro | 2 +-
 src/pages/blog/index.astro         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

(limited to 'src/pages')

diff --git a/src/pages/blog/[event]/index.astro b/src/pages/blog/[event]/index.astro
index 5bab8f0..46e2557 100644
--- a/src/pages/blog/[event]/index.astro
+++ b/src/pages/blog/[event]/index.astro
@@ -112,7 +112,7 @@ const posts = blogs
           {
             posts.map((post) => (
               <li>
-                <a href={`/blog/${post.id}`}>
+                <a href={`/astro-blog/blog/${post.id}`}>
                   <h4 class="title">{post.data.title}</h4>
                 </a>
               </li>
diff --git a/src/pages/blog/index.astro b/src/pages/blog/index.astro
index 07cc838..7f1f01e 100644
--- a/src/pages/blog/index.astro
+++ b/src/pages/blog/index.astro
@@ -106,7 +106,7 @@ console.log(events);
           {
             events.map((event) => (
               <li>
-                <a href={`/blog/${event}/`}>
+                <a href={`/astro-blog/blog/${event}/`}>
                   <h4 class="title">{event}</h4>
                 </a>
               </li>
-- 
cgit v1.2.3