Skip to content

Commit

Permalink
fix(theme): change schema.org itemType prop urls from http to https (f…
Browse files Browse the repository at this point in the history
  • Loading branch information
thedevwonder authored and slorber committed Aug 3, 2023
1 parent a6d0bdc commit 372321c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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>}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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})} />
Expand Down

0 comments on commit 372321c

Please sign in to comment.