diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-07-14 16:34:22 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-07-14 16:34:22 +0200 |
| commit | a2992b2a38cd236693211cd791e162719f43f9d9 (patch) | |
| tree | edaea8c11a633ce2eb23ec971e7d0390e190941b /src/layouts/BlogListLayout.astro | |
| parent | 9b2638a6c4f3a3b3ffc12e12d79dc4ae73a911e3 (diff) | |
Fix links and improve descriptions across blog and portfolio layouts
Diffstat (limited to 'src/layouts/BlogListLayout.astro')
| -rw-r--r-- | src/layouts/BlogListLayout.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layouts/BlogListLayout.astro b/src/layouts/BlogListLayout.astro index 4ad72ea..be40a74 100644 --- a/src/layouts/BlogListLayout.astro +++ b/src/layouts/BlogListLayout.astro @@ -93,7 +93,7 @@ const schema = { const tagsAttribute = postTags.join(','); return ( <li class="post-item" data-tags={tagsAttribute}> - <a href={`/blog/${post.id}`}>{post.data.title}</a> + <a href={`/blog/${post.id}/`}>{post.data.title}</a> {postTags.length > 0 && ( <ul class="post-tags"> {postTags.map((tag: string) => ( |
