aboutsummaryrefslogtreecommitdiff
path: root/src/pages/blog
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/blog')
-rw-r--r--src/pages/blog/[event]/index.astro4
-rw-r--r--src/pages/blog/index.astro4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/pages/blog/[event]/index.astro b/src/pages/blog/[event]/index.astro
index 46e2557..f41e010 100644
--- a/src/pages/blog/[event]/index.astro
+++ b/src/pages/blog/[event]/index.astro
@@ -2,7 +2,7 @@
import BaseHead from "../../../components/BaseHead.astro";
import Header from "../../../components/Header.astro";
import Footer from "../../../components/Footer.astro";
-import { SITE_TITLE, SITE_DESCRIPTION } from "../../../consts";
+import { SITE_TITLE, SITE_DESCRIPTION, SITE_BASE } from "../../../consts";
import { getCollection } from "astro:content";
import FormattedDate from "../../../components/FormattedDate.astro";
@@ -112,7 +112,7 @@ const posts = blogs
{
posts.map((post) => (
<li>
- <a href={`/astro-blog/blog/${post.id}`}>
+ <a href={`${SITE_BASE}/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 7f1f01e..4da8b46 100644
--- a/src/pages/blog/index.astro
+++ b/src/pages/blog/index.astro
@@ -2,7 +2,7 @@
import BaseHead from "../../components/BaseHead.astro";
import Header from "../../components/Header.astro";
import Footer from "../../components/Footer.astro";
-import { SITE_TITLE, SITE_DESCRIPTION } from "../../consts";
+import { SITE_TITLE, SITE_DESCRIPTION, SITE_BASE } from "../../consts";
import { getCollection } from "astro:content";
import FormattedDate from "../../components/FormattedDate.astro";
@@ -106,7 +106,7 @@ console.log(events);
{
events.map((event) => (
<li>
- <a href={`/astro-blog/blog/${event}/`}>
+ <a href={`${SITE_BASE}/blog/${event}/`}>
<h4 class="title">{event}</h4>
</a>
</li>