feat: Add RSS-link in head
Some checks are pending
Deploy website / build-and-deploy (push) Waiting to run
Some checks are pending
Deploy website / build-and-deploy (push) Waiting to run
Thanks Tony for the heads-up Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
parent
47a8e6e9f2
commit
80e6445cf7
1 changed files with 8 additions and 0 deletions
|
|
@ -29,6 +29,14 @@ const { title, description, image = '/placeholder-social.jpg' } = Astro.props;
|
||||||
<!-- Canonical URL -->
|
<!-- Canonical URL -->
|
||||||
<link rel="canonical" href={canonicalURL} />
|
<link rel="canonical" href={canonicalURL} />
|
||||||
|
|
||||||
|
<!-- RSS Feed -->
|
||||||
|
<link
|
||||||
|
rel="alternate"
|
||||||
|
type="application/rss+xml"
|
||||||
|
title="sidski"
|
||||||
|
href={new URL("rss.xml", Astro.site)}
|
||||||
|
/>
|
||||||
|
|
||||||
<!-- Primary Meta Tags -->
|
<!-- Primary Meta Tags -->
|
||||||
<title>{title}</title>
|
<title>{title}</title>
|
||||||
<meta name="title" content={title} />
|
<meta name="title" content={title} />
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue