diff options
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/blog/[event]/index.astro | 2 | ||||
-rw-r--r-- | src/pages/blog/index.astro | 2 |
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> |