popov.link/src/pages/index.astro

14 lines
296 B
Plaintext
Raw Normal View History

2024-09-04 21:16:37 +00:00
---
import { getCollection } from "astro:content";
import Element from "../components/PostElement.astro";
2024-09-06 08:21:27 +00:00
import Layout from "../layouts/PageLayout.astro";
2024-09-04 21:16:37 +00:00
const posts = await getCollection("blog");
---
<Layout>
<section>
{posts.map((post) => <Element post={post} />)}
</section>
2024-09-04 21:16:37 +00:00
</Layout>