From 828fd5094d18bda50c943c79b338b59b01aaea39 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 24 Jul 2023 21:08:08 -0700 Subject: reverse recency of posts on landing page --- src/pages/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/pages/index.astro b/src/pages/index.astro index a1d2259..a7190ad 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -43,7 +43,7 @@ const posts = (await getCollection('blog')).sort( {post.data.title} - )) + )).reverse() } -- cgit v1.2.3