20 lines
458 B
Plaintext
20 lines
458 B
Plaintext
---
|
|
import { type CollectionEntry, getCollection } from 'astro:content';
|
|
import BlogPost from '../../layouts/BlogPost.astro';
|
|
|
|
export async function getStaticPaths() {
|
|
const posts = await getCollection('blog');
|
|
return posts.map((post) => ({
|
|
params: { slug: post.slug },
|
|
props: post,
|
|
}));
|
|
}
|
|
type Props = CollectionEntry<'blog'>;
|
|
|
|
const post = Astro.props;
|
|
const { Content } = await post.render();
|
|
---
|
|
|
|
<BlogPost {...post.data}>
|
|
<Content />
|
|
</BlogPost> |