--- import Page from "../../layouts/Page.astro"; import { getCollection } from "astro:content"; const allBlogPosts = await getCollection('blog'); ---
{allBlogPosts.map((post) => (

{post.data.title}

{post.data.date}

{post.data.description}

Read more
))