diff options
| author | Joe Carstairs <jcarstairs@scottlogic.com> | 2024-07-04 11:34:51 +0100 |
|---|---|---|
| committer | Joe Carstairs <jcarstairs@scottlogic.com> | 2024-07-04 11:34:51 +0100 |
| commit | 24796509eef1ceaeebb4021b735d8480f1a5de65 (patch) | |
| tree | f40e6df5d4f4afac1c9af5b7eef4bc00285a7b3e /website/src/components/BaseHead.astro | |
| parent | af9bc77dcf93675250515941be3c33a31a219bcf (diff) | |
Adds links to RSS feeds to BaseHead component
Diffstat (limited to 'website/src/components/BaseHead.astro')
| -rw-r--r-- | website/src/components/BaseHead.astro | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/website/src/components/BaseHead.astro b/website/src/components/BaseHead.astro index 3d8223c..a0f3ff7 100644 --- a/website/src/components/BaseHead.astro +++ b/website/src/components/BaseHead.astro @@ -43,3 +43,7 @@ const { title, description, image = '/images/headshot.jpg' } = Astro.props; <meta property="twitter:title" content={title} /> <meta property="twitter:description" content={description} /> <meta property="twitter:image" content={new URL(image, Astro.url)} /> + +<!-- Feeds --> +<link rel="alternate" type="text/xml" title="Blog RSS" href="/blog/rss.xml"> +<link rel="alternate" type="text/xml" title="Links RSS" href="/links/rss.xml"> |
