diff options
author | 2021-06-11 21:55:13 +0200 | |
---|---|---|
committer | 2021-06-11 15:55:13 -0400 | |
commit | 348d829e94b778874d13c8e07a5105321deab025 (patch) | |
tree | 3a261b56ee6db7d04577ef4d264a49ec6ed2077c /examples/docs/src/layouts/Main.astro | |
parent | fb02a482c3e1f72b47360933f43111605408a476 (diff) | |
download | astro-348d829e94b778874d13c8e07a5105321deab025.tar.gz astro-348d829e94b778874d13c8e07a5105321deab025.tar.zst astro-348d829e94b778874d13c8e07a5105321deab025.zip |
Fix/issue #385 (#392)
* Apply favicon to the docs template
* Fix Sidebar category headers aren't clickable
Fixes #385
* Improve Docs example documentation
* Fix Documentation List on getting started page
Diffstat (limited to 'examples/docs/src/layouts/Main.astro')
-rw-r--r-- | examples/docs/src/layouts/Main.astro | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/docs/src/layouts/Main.astro b/examples/docs/src/layouts/Main.astro index b741098ef..e6f30faca 100644 --- a/examples/docs/src/layouts/Main.astro +++ b/examples/docs/src/layouts/Main.astro @@ -17,6 +17,9 @@ editHref = `https://github.com/snowpackjs/astro/tree/main/examples/doc/src/pages <link rel="stylesheet" href="/index.css" /> <script src="/theme.js" /> + <link rel="icon" + type="image/svg+xml" + href="/favicon.svg"> <style> body { |