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(); }); +---