blob: b4c6189929578215a0571561841174aea248a7ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
---
import { getCollection } from "astro:content";
import ListPage from "../layouts/ListPage.astro";
const posts = await getCollection("articles", ({ id }) =>
id.startsWith("posts/"),
);
---
<ListPage title="Posts" articles={posts} />
|