From e155596f1b970c412fcf2bd4ec4b73df93f8ecd1 Mon Sep 17 00:00:00 2001 From: Daniel LaForce Date: Wed, 23 Apr 2025 03:05:49 -0600 Subject: [PATCH] fix: Add missing closing fence in [tag].astro --- src/pages/tag/[tag].astro | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/tag/[tag].astro b/src/pages/tag/[tag].astro index 5c65fe7..ba7756b 100644 --- a/src/pages/tag/[tag].astro +++ b/src/pages/tag/[tag].astro @@ -29,6 +29,7 @@ const sortedPosts = posts.sort((a, b) => { const dateB = b.data.pubDate ? new Date(b.data.pubDate) : new Date(0); return dateB.getTime() - dateA.getTime(); }); +---