diff options
Diffstat (limited to 'src/pages/blog')
-rw-r--r-- | src/pages/blog/[...slug].astro | 2 |
1 files changed, 0 insertions, 2 deletions
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, }); |