--- import { getCollection } from "astro:content"; import ListPage from "../layouts/ListPage.astro"; const posts = await getCollection("articles", ({ id }) => id.startsWith("posts/"), ); ---