closes #38
This commit is contained in:
parent
2d8e98d3c3
commit
d4ecc09fdd
3 changed files with 0 additions and 8 deletions
|
|
@ -52,11 +52,6 @@
|
||||||
* @type {string}
|
* @type {string}
|
||||||
*/
|
*/
|
||||||
export let shareImgAlt: string = '';
|
export let shareImgAlt: string = '';
|
||||||
/**
|
|
||||||
* [HTML lang attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/lang). **Two-letter code only.**
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
export let lang: string = 'en';
|
|
||||||
/**
|
/**
|
||||||
* Publish time as an [ISO string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
|
* Publish time as an [ISO string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
|
||||||
* @type {string}
|
* @type {string}
|
||||||
|
|
@ -153,7 +148,6 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
<html lang="{lang}"></html>
|
|
||||||
<title>{seoTitle}</title>
|
<title>{seoTitle}</title>
|
||||||
<meta name="description" content="{seoDescription}" />
|
<meta name="description" content="{seoDescription}" />
|
||||||
<link rel="canonical" href="{canonicalUrl}" />
|
<link rel="canonical" href="{canonicalUrl}" />
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,6 @@ The `SEO` component adds essential metadata to published pages.
|
||||||
shareDecription="A description for Twitter/Facebook"
|
shareDecription="A description for Twitter/Facebook"
|
||||||
shareImgPath="https://graphics.reuters.com/world-coronavirus-tracker-and-maps/assets/images/share.jpg"
|
shareImgPath="https://graphics.reuters.com/world-coronavirus-tracker-and-maps/assets/images/share.jpg"
|
||||||
shareImgAlt="An image showing global COVID infection rates"
|
shareImgAlt="An image showing global COVID infection rates"
|
||||||
lang="en"
|
|
||||||
publishTime="2020-09-15T00:00:00.000Z"
|
publishTime="2020-09-15T00:00:00.000Z"
|
||||||
updateTime="2021-01-10T12:30:00.000Z"
|
updateTime="2021-01-10T12:30:00.000Z"
|
||||||
authors="{[
|
authors="{[
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,6 @@ Most of the fields are filled in by other sources, like your Google Doc and pack
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<SEO
|
<SEO
|
||||||
lang="en"
|
|
||||||
baseUrl="{VITE_BASE_URL}"
|
baseUrl="{VITE_BASE_URL}"
|
||||||
pageUrl="{$page.url}"
|
pageUrl="{$page.url}"
|
||||||
seoTitle="{content.SEOTitle}"
|
seoTitle="{content.SEOTitle}"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue