fix links on tag pages to avoid redirects

This commit is contained in:
2025-11-24 17:51:42 -05:00
parent e85f8b5c3e
commit 2233e0cc2d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ posts.sort(
{
posts.map((post) => (
<li>
<a href={`/posts/${post.id}`}>{post.data.title}</a> -
<a href={`/blog/${post.id}`}>{post.data.title}</a> -
<span>
{format(
add(new Date(post.data.pubDate), { hours: 6 }),