aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorLarsVomMars2024-12-27 13:01:37 +0100
committerLarsVomMars2024-12-27 13:01:37 +0100
commit1ffbf71a057e8789fd6471e319a9a16c4ce031e1 (patch)
treec15c4a8a72ae07ea496c6232445f74b46326b1ba /src/pages
parent492922eb31f3c4e8232b97eb2b81824a6eecddd1 (diff)
update urls
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/blog/[event]/index.astro2
-rw-r--r--src/pages/blog/index.astro2
2 files changed, 2 insertions, 2 deletions
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>