summaryrefslogtreecommitdiff
path: root/examples/docs/src/components/HeadSEO.astro
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-08-26 15:02:38 -0700
committerGravatar Fred K. Schott <fkschott@gmail.com> 2021-08-26 15:03:21 -0700
commit2e8db7ad2384b756894eac6be72bcf720f7f28fa (patch)
tree074ff88116520c3484210a0b94331b0f2b81581b /examples/docs/src/components/HeadSEO.astro
parentb7ada11ddbabe4dd2f0798e140e5b280de4d6952 (diff)
downloadastro-2e8db7ad2384b756894eac6be72bcf720f7f28fa.tar.gz
astro-2e8db7ad2384b756894eac6be72bcf720f7f28fa.tar.zst
astro-2e8db7ad2384b756894eac6be72bcf720f7f28fa.zip
add algolia and cleanup docs readme
Diffstat (limited to 'examples/docs/src/components/HeadSEO.astro')
-rw-r--r--examples/docs/src/components/HeadSEO.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/docs/src/components/HeadSEO.astro b/examples/docs/src/components/HeadSEO.astro
index 5553eb2d0..268809a87 100644
--- a/examples/docs/src/components/HeadSEO.astro
+++ b/examples/docs/src/components/HeadSEO.astro
@@ -18,7 +18,7 @@ const imageAlt = content?.image?.alt ?? OPEN_GRAPH.image.alt;
<meta property="og:title" content={formattedContentTitle}/>
<meta property="og:type" content="article"/>
<meta property="og:url" content={canonicalURL}/>
-<meta property="og:locale" content={content.ogLocale ?? OPEN_GRAPH.locale}/>
+<meta property="og:locale" content={content.ogLocale ?? SITE.defaultLanguage}/>
<meta property="og:image" content={canonicalImageSrc}/>
<meta property="og:image:alt" content={imageAlt}/>
<meta property="og:description" content={content.description ? content.description : SITE.description}/>