From 5bc965379b81edc33226a2ec98ea9b5d7d0c5c67 Mon Sep 17 00:00:00 2001 From: LATCHIMY Nicolas Date: Sun, 8 Mar 2026 12:55:12 +0400 Subject: [PATCH] =?UTF-8?q?d=C3=A9part=20du=20tavernier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 7ed3c57..4efd92d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -20,7 +20,7 @@ const sortedPosts = chroniclesOnly.sort((a, b) => { // Si les dates sont identiques, on trie par titre (001, 002, etc.) if (dateDiff === 0) { - return a.data.title.localeCompare(b.data.title); + return b.data.title.localeCompare(a.data.title); } return dateDiff;