Mae's website :3 maemoon.me
personal website svelte sveltekit
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

RSS fix

+2 -2
+2 -2
src/routes/rss/+server.js
··· 31 31 ${posts 32 32 .map( 33 33 (post) => `<item> 34 - <guid isPermaLink="true">${siteURL}/blog/${post.path}</guid> 34 + <guid isPermaLink="true">${siteURL}/blog/post/${post.path}</guid> 35 35 <title>${post.meta.title}</title> 36 - <link>${siteURL}/post/${post.path}</link> 36 + <link>${siteURL}/blog/post/${post.path}</link> 37 37 <description>${post.meta.title}</description> 38 38 <pubDate>${new Date(post.meta.date).toUTCString()}</pubDate> 39 39 </item>`