feat: Add RSS-link in head
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:
SindreKjelsrud 2026-03-09 20:57:43 +01:00
parent 47a8e6e9f2
commit 80e6445cf7
Signed by: sidski
GPG key ID: D2BBDF3EDE6BA9A6

View file

@ -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} />