fix styling

This commit is contained in:
Barrett Ruth 2025-10-08 19:44:09 -04:00
parent 4507528f52
commit 375f1530a4
6 changed files with 38 additions and 37 deletions

View file

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