fix: Add missing closing fence in [tag].astro
This commit is contained in:
parent
97e64026de
commit
e155596f1b
|
@ -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">
|
||||||
|
|
Loading…
Reference in New Issue