fix: Add missing closing fence in [tag].astro

This commit is contained in:
Daniel LaForce 2025-04-23 03:05:49 -06:00
parent 97e64026de
commit e155596f1b
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ const sortedPosts = posts.sort((a, b) => {
const dateB = b.data.pubDate ? new Date(b.data.pubDate) : new Date(0); const dateB = b.data.pubDate ? new Date(b.data.pubDate) : new Date(0);
return dateB.getTime() - dateA.getTime(); return dateB.getTime() - dateA.getTime();
}); });
---
<BaseLayout title={`Posts tagged with "${tag}" | LaForce IT Blog`} description={`Articles and guides related to ${tag}`}> <BaseLayout title={`Posts tagged with "${tag}" | LaForce IT Blog`} description={`Articles and guides related to ${tag}`}>
<main class="container"> <main class="container">