From 9777d996d172755472dd8127ff9b7a3c579cf454 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sat, 14 Jun 2025 11:01:42 +0000 Subject: refactor: enhance PostElement structure and update blog schema - Wrapped the post link in an
tag for improved semantic structure. - Updated blogSchema to include posts for better structured data representation. - Adjusted the blog index to utilize the new posts parameter for enhanced SEO. --- src/pages/blog/index.astro | 1 + 1 file changed, 1 insertion(+) (limited to 'src/pages') diff --git a/src/pages/blog/index.astro b/src/pages/blog/index.astro index 611d0fc..fd8b376 100644 --- a/src/pages/blog/index.astro +++ b/src/pages/blog/index.astro @@ -30,6 +30,7 @@ const lang = "en"; const schema = blogSchema({ siteUrl: new URL("/", Astro.site).toString(), title, + posts, }); --- -- cgit v1.2.3