From 0473060773a7acb10a6f11e5e22ec13ddf5650ba Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sat, 14 Jun 2025 12:08:48 +0000 Subject: feat: add configuration and default image for blog posts - Introduced a new configuration file to centralize author information and default image settings for blog posts. - Added a default image path in the blog post configuration for improved content presentation. - Updated blog post schema to utilize the new configuration for author details, enhancing structured data representation. --- src/pages/blog/[...slug].astro | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/pages') diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro index 39207dd..e347eda 100644 --- a/src/pages/blog/[...slug].astro +++ b/src/pages/blog/[...slug].astro @@ -22,7 +22,6 @@ const post = Astro.props; const { Content, remarkPluginFrontmatter } = await post.render(); -const author = post.data.author; const description = post.data.description; const isBasedOn = post.data.basedOn; const lang = post.data.lang; @@ -40,7 +39,6 @@ const schema = blogPostSchema({ slug, datePublished, dateModified, - author, lang, isBasedOn, }); -- cgit v1.2.3