1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-10-23 12:34:29 -04:00

test config changes before messing everything up too much

This commit is contained in:
2022-01-03 09:59:42 -05:00
parent c708383afb
commit 36e3cfa18e
9 changed files with 178 additions and 169 deletions

View File

@@ -32,7 +32,7 @@ const Note = ({ source, frontMatter, slug }) => (
},
images: [
{
url: `${config.baseURL}${frontMatter.image}`,
url: `${config.baseUrl}${frontMatter.image}`,
alt: frontMatter.title,
},
],
@@ -44,15 +44,15 @@ const Note = ({ source, frontMatter, slug }) => (
}}
/>
<ArticleJsonLd
url={`${config.baseURL}/notes/${slug}`}
url={`${config.baseUrl}/notes/${slug}`}
title={frontMatter.title}
description={frontMatter.description}
datePublished={frontMatter.date}
dateModified={frontMatter.date}
images={[`${config.baseURL}${frontMatter.image}`]}
images={[`${config.baseUrl}${frontMatter.image}`]}
authorName={[config.authorName]}
publisherName={config.siteName}
publisherLogo={`${config.baseURL}/static/images/me.jpg`}
publisherLogo={`${config.baseUrl}/static/images/me.jpg`}
/>
<Layout>