Fork of Chiri for Astro for my blog
0
fork

Configure Feed

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

at a2f7dec4d7c309420bc9d4e87b4de27dcd8a4142 16 lines 480 B view raw
1--- 2import IndexLayout from '@/layouts/IndexLayout.astro' 3import About from '@/components/widgets/About.astro' 4import PostList from '@/components/widgets/PostList.astro' 5import { themeConfig } from '@/config' 6import { getSortedFilteredPosts } from '@/utils/draft' 7 8const posts = await getSortedFilteredPosts() 9--- 10 11<IndexLayout title={themeConfig.site.title} description={themeConfig.site.description}> 12 <About /> 13 <main> 14 <PostList posts={posts} /> 15 </main> 16</IndexLayout>