--- import BaseLayout from "../layouts/BaseLayout.astro"; import { getCollection } from "astro:content"; const title = "gists"; const gists = await getCollection("gists"); gists.sort((a, b) => a.slug.localeCompare(b.slug)); ---