🩹 Fix RSS feed

This commit is contained in:
2025-07-15 09:33:58 -04:00
parent 71b995aac8
commit bae8c8ad53
5 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -27,9 +27,9 @@ const title = Astro.props.title || Astro.props.frontmatter?.title || 'Unknown';
/><link
rel="alternate"
type="application/rss+xml"
title="ghall.blog - RSS"
title="ghall.space - RSS"
href={`${Astro.site}rss.xml`}
/><title>{`ghall.blog - ${title}`}</title>
/><title>{`ghall.space - ${title}`}</title>
<ClientRouter />
</head>
<body class="layout-simple" transition:animate="fade">
+1 -1
View File
@@ -6,7 +6,7 @@ const parser = new MarkdownIt({ html: true });
export async function GET(context) {
const blog = await getCollection('blog');
return rss({
title: 'ghall.blog',
title: 'ghall.space',
description:
'My personal blog about life, gaming, tech, and whatever else I feel like writing about.',
site: context.site,