--- import { getCollection } from "astro:content"; import FormattedDate from "../../components/FormattedDate.astro"; import BaseLayout from "../../layouts/BaseLayout.astro"; const posts = (await getCollection("blog")).sort( (a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf(), ); ---