blob: 6575ca6b666895de799c425d31e67c585f5162c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
import { getCollection } from "astro:content";
import Element from "../components/PostElement.astro";
import Layout from "../layouts/BaseLayout.astro";
const posts = await getCollection("blog");
posts.sort((a, b) => b.data.pubDate.getTime() - a.data.pubDate.getTime());
---
<Layout>
<section>
{posts.map((post) => <Element post={post} />)}
</section>
</Layout>
|