Files for my website bwc9876.dev

Fix sorting on blog posts

bwc9876.dev d244bfea 61b9b90c

verified
+3 -1
+3 -1
src/pages/blog/index.astro
··· 2 2 import Layout from "@layouts/Layout.astro"; 3 3 import { getCollection } from "astro:content"; 4 4 5 - const blogEntries = await getCollection("posts"); 5 + const blogEntries = (await getCollection("posts")); 6 + 7 + blogEntries.sort((a, b) => b.data.date.valueOf() - a.data.date.valueOf()); 6 8 --- 7 9 8 10 <Layout title="The Cowsay - Ben C's Blog">