diff options
author | 2025-01-22 15:40:08 +0000 | |
---|---|---|
committer | 2025-01-22 15:40:08 +0000 | |
commit | d5fb7a34eafa3c0824f1e66b58b2b1e2cd3878ee (patch) | |
tree | 5ecf74dbdf2c0edc0de2858faf417b7ae49149eb | |
parent | 4d0846ba67c6d187b06e14debec650ffb008ffb2 (diff) | |
download | astro-d5fb7a34eafa3c0824f1e66b58b2b1e2cd3878ee.tar.gz astro-d5fb7a34eafa3c0824f1e66b58b2b1e2cd3878ee.tar.zst astro-d5fb7a34eafa3c0824f1e66b58b2b1e2cd3878ee.zip |
[ci] format
-rw-r--r-- | examples/blog/src/components/BaseHead.astro | 7 |
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 --> |