Files
pantosite/src/pages/projects/[...slug].astro
2025-02-09 01:12:55 +01:00

23 lines
593 B
Plaintext

---
import { getCollection } from 'astro:content';
import BlogPost from '../../layouts/BlogPost.astro';
import { render } from 'astro:content';
import { convertCollectionPost, convertPost, type Post } from '../../models/Post';
export async function getStaticPaths() {
const posts: Post[] = (await getCollection('projects')).map(convertPost);
return posts.map((post) => ({
params: { slug: post.id },
props: post,
}));
}
type Props = Post;
const post: Post = Astro.props;
const { Content } = await render(convertCollectionPost(post));
---
<BlogPost {...post}>
<Content />
</BlogPost>