diff options
author | 2021-08-16 17:28:38 -0400 | |
---|---|---|
committer | 2021-08-16 14:28:38 -0700 | |
commit | b03f1f71b7bfc1b3e76bd349ba88862509c63bc6 (patch) | |
tree | 0e34f475c5d174f88fbd3b9cadf32ba03408c1da /examples/docs/src | |
parent | 24a40bee6358d6732e20dc0e131089f8a42b704d (diff) | |
download | astro-b03f1f71b7bfc1b3e76bd349ba88862509c63bc6.tar.gz astro-b03f1f71b7bfc1b3e76bd349ba88862509c63bc6.tar.zst astro-b03f1f71b7bfc1b3e76bd349ba88862509c63bc6.zip |
Adding favicon to examples (#1084)
Diffstat (limited to 'examples/docs/src')
-rw-r--r-- | examples/docs/src/layouts/Main.astro | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/examples/docs/src/layouts/Main.astro b/examples/docs/src/layouts/Main.astro index a00552b36..837b53048 100644 --- a/examples/docs/src/layouts/Main.astro +++ b/examples/docs/src/layouts/Main.astro @@ -23,12 +23,10 @@ const githubEditUrl = `https://github.com/USER/REPO/blob/main/${currentFile}` <title>{content.title}</title> <link rel="stylesheet" href="/index.css" /> - <link rel="stylesheet" href="/theme.css" /> - <link rel="stylesheet" href="/code.css" /> <script src="/theme.js" /> - <link rel="icon" - type="image/svg+xml" - href="/favicon.svg"> + + <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> + <link rel="alternate icon" type="image/x-icon" href="/favicon.ico" /> <style> body { |