diff options
Diffstat (limited to 'examples/blog/src/components/MainHead.astro')
-rw-r--r-- | examples/blog/src/components/MainHead.astro | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/blog/src/components/MainHead.astro b/examples/blog/src/components/MainHead.astro index bff812b0c..dfeb9dfb4 100644 --- a/examples/blog/src/components/MainHead.astro +++ b/examples/blog/src/components/MainHead.astro @@ -4,6 +4,9 @@ export let title: string; export let description: string; export let image: string | undefined; export let type: string | undefined; +export let next: string | undefined; +export let prev: string | undefined; +export let canonicalURL: string | undefined; // internal data const OG_TYPES = { @@ -17,6 +20,10 @@ const OG_TYPES = { <title>{title}</title> <meta name="description" content={description} /> <link rel="stylesheet" href="/global.css" /> +<link rel="sitemap" href="/sitemap.xml" /> +<link rel="canonical" href={canonicalURL} /> +{next && <link rel="next" href={next} />} +{prev && <link rel="prev" href={prev} />} <!-- OpenGraph --> <meta property="og:title" content={title} /> |