aboutsummaryrefslogtreecommitdiff
path: root/src/components/Sections
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-04-09 11:47:37 +0300
committerValentin Popov <valentin@popov.link>2026-04-09 11:47:37 +0300
commitf90592d8a106bea418cbd3d8bce9c2d86029f93c (patch)
treeb5e4bc36e8b318641d34fd299911babf87b7e5d1 /src/components/Sections
parent12aa763b05e0d5d903e77022afafc6d4bfccad9e (diff)
downloadpopov.link-f90592d8a106bea418cbd3d8bce9c2d86029f93c.tar.xz
popov.link-f90592d8a106bea418cbd3d8bce9c2d86029f93c.zip
feat: migrated to Astro 6
Diffstat (limited to 'src/components/Sections')
-rw-r--r--src/components/Sections/LatestPosts.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Sections/LatestPosts.astro b/src/components/Sections/LatestPosts.astro
index e514ff5..5c6afd9 100644
--- a/src/components/Sections/LatestPosts.astro
+++ b/src/components/Sections/LatestPosts.astro
@@ -27,7 +27,7 @@ const latestPosts = posts.slice(0, 5);
{
latestPosts.map((post) => (
<li>
- <a href={`/blog/${post.slug}`} lang={post.data.lang}>
+ <a href={`/blog/${post.id}`} lang={post.data.lang}>
{post.data.title}
</a>