Files
popov.link/src/pages/index.astro
T

14 lines
296 B
Plaintext
Raw Normal View History

2024-09-04 21:16:37 +00:00
---
import { getCollection } from "astro:content";
2024-09-12 13:11:16 +00:00
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>
2024-09-12 13:11:16 +00:00
<section>
{posts.map((post) => <Element post={post} />)}
</section>
2024-09-04 21:16:37 +00:00
</Layout>