diff --git a/src/pages/tag/[tag].astro b/src/pages/tag/[tag].astro index 5c65fe7..3aebbc0 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(); }); +---
@@ -43,23 +44,14 @@ const sortedPosts = posts.sort((a, b) => {
{sortedPosts.map((post) => (
- {post.data.heroImage ? ( - - ) : ( - - )} + {/* Temporarily removed conditional image rendering for debugging */} +