diff options
author | 2021-08-17 22:24:46 -0700 | |
---|---|---|
committer | 2021-08-17 22:24:46 -0700 | |
commit | b3da04bb501975443d410a76bed58547abb4c5ec (patch) | |
tree | f4b154a5eb0e17ccff9d3c8daca9794dbd8ae103 /www/src/components/BaseHead.astro | |
parent | c7bbb042b0f7df5c0b059f59b208afa7d0067238 (diff) | |
download | astro-b3da04bb501975443d410a76bed58547abb4c5ec.tar.gz astro-b3da04bb501975443d410a76bed58547abb4c5ec.tar.zst astro-b3da04bb501975443d410a76bed58547abb4c5ec.zip |
add back dark-mode aware favicons
Diffstat (limited to 'www/src/components/BaseHead.astro')
-rw-r--r-- | www/src/components/BaseHead.astro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/www/src/components/BaseHead.astro b/www/src/components/BaseHead.astro index bfda88863..03e1ac852 100644 --- a/www/src/components/BaseHead.astro +++ b/www/src/components/BaseHead.astro @@ -12,6 +12,7 @@ const { title, description, permalink } = Astro.props; <meta name="viewport" content="width=device-width" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <link rel="alternate icon" type="image/x-icon" href="/favicon.ico" /> +<link rel="sitemap" href="/sitemap.xml"/> <!-- Primary Meta Tags --> <title>{title}</title> |