summaryrefslogtreecommitdiff
path: root/examples/blog/src/components/BaseHead.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/blog/src/components/BaseHead.astro')
-rw-r--r--examples/blog/src/components/BaseHead.astro7
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/blog/src/components/BaseHead.astro b/examples/blog/src/components/BaseHead.astro
index 8477c55ea..6f5c5c864 100644
--- a/examples/blog/src/components/BaseHead.astro
+++ b/examples/blog/src/components/BaseHead.astro
@@ -20,7 +20,12 @@ const { title, description, image = '/blog-placeholder-1.jpg' } = Astro.props;
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="sitemap" href="/sitemap-index.xml" />
-<link rel="alternate" type="application/rss+xml" title={SITE_TITLE} href={new URL("rss.xml", Astro.site)} />
+<link
+ rel="alternate"
+ type="application/rss+xml"
+ title={SITE_TITLE}
+ href={new URL('rss.xml', Astro.site)}
+/>
<meta name="generator" content={Astro.generator} />
<!-- Font preloads -->