fix(theme): change schema.org itemType prop urls from http to https (#9184)

This commit is contained in:
thedevwonder 2023-07-28 23:07:05 +05:30 committed by GitHub
parent 5e147e8914
commit e0bb39a40a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ export default function BlogLayout(props: Props): JSX.Element {
'col--9 col--offset-1': !hasSidebar,
})}
itemScope
itemType="http://schema.org/Blog">
itemType="https://schema.org/Blog">
{children}
</main>
{toc && <div className="col col--2">{toc}</div>}

View file

@ -27,7 +27,7 @@ export default function BlogPostItemContainer({
className={className}
itemProp="blogPost"
itemScope
itemType="http://schema.org/BlogPosting">
itemType="https://schema.org/BlogPosting">
{description && <meta itemProp="description" content={description} />}
{image && (
<link itemProp="image" href={withBaseUrl(image, {absolute: true})} />