personal site
0
fork

Configure Feed

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

feat: page titles

+3 -3
+2 -2
src/pages/blog/[id].astro
··· 14 14 const { Content } = await render(post); 15 15 --- 16 16 17 - <BaseLayout> 17 + <BaseLayout title={`${post.data.title} - Goldweaver's Abode`}> 18 18 <div 19 - class="border-glw-overlay0 flex min-h-screen w-[66vw] flex-col gap-2 border-r border-l border-dashed px-8 py-8 items-center" 19 + class="border-glw-overlay0 flex min-h-screen w-[66vw] flex-col items-center gap-2 border-r border-l border-dashed px-8 py-8" 20 20 > 21 21 <Prose> 22 22 <Content />
+1 -1
src/pages/blog/index.astro
··· 7 7 console.log(allBlogPosts); 8 8 --- 9 9 10 - <BaseLayout> 10 + <BaseLayout title="Blogs - Goldweaver's Abode"> 11 11 <div 12 12 class="border-glw-overlay0 flex min-h-screen w-[66vw] flex-col gap-2 border-r border-l border-dashed px-8 py-4" 13 13 >