summaryrefslogtreecommitdiff
path: root/website/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'website/src/pages')
-rw-r--r--website/src/pages/blog/rss.xml.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/src/pages/blog/rss.xml.ts b/website/src/pages/blog/rss.xml.ts
index ae81209..9e65a04 100644
--- a/website/src/pages/blog/rss.xml.ts
+++ b/website/src/pages/blog/rss.xml.ts
@@ -23,7 +23,7 @@ export async function GET(context: APIContext) {
site: path.join(site.toString(), 'blog'),
trailingSlash: false,
items: posts.map((post) => ({
- link: post.slug,
+ link: `/blog/${post.slug}`,
title: post.data.title,
content: mdParser.render(post.body),
pubDate: new Date(`${post.data.pubDate.year}-${post.data.pubDate.month}-${post.data.pubDate.day}`),