diff options
author | 2021-08-26 15:04:19 -0700 | |
---|---|---|
committer | 2021-08-26 15:04:44 -0700 | |
commit | fdd701dd88529ee0d4911283e35be86b000ed1fc (patch) | |
tree | 61d450d04633eece1c12b350b9ef3512dc2fa7b7 /examples/docs/src/components/SiteSidebar.astro | |
parent | 84c18d3030c98b2770144a8a27d1cca7bbfedc1d (diff) | |
parent | 2e8db7ad2384b756894eac6be72bcf720f7f28fa (diff) | |
download | astro-fdd701dd88529ee0d4911283e35be86b000ed1fc.tar.gz astro-fdd701dd88529ee0d4911283e35be86b000ed1fc.tar.zst astro-fdd701dd88529ee0d4911283e35be86b000ed1fc.zip |
Merge branch 'okikio/main' (#1111)
Diffstat (limited to 'examples/docs/src/components/SiteSidebar.astro')
-rw-r--r-- | examples/docs/src/components/SiteSidebar.astro | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/docs/src/components/SiteSidebar.astro b/examples/docs/src/components/SiteSidebar.astro deleted file mode 100644 index 0fbad0c83..000000000 --- a/examples/docs/src/components/SiteSidebar.astro +++ /dev/null @@ -1,20 +0,0 @@ ---- -import { sidebar } from '../config.ts'; ---- - -<nav> - <ul class="nav-groups"> - {sidebar.map(category => ( - <li> - <div class="nav-group"> - <h4 class="nav-group-title"><a href={`${Astro.site}${category.link}`}>{category.text}</a></h4> - <ul> - {category.children.map(child => ( - <li class="nav-link"><a href={`${Astro.site}${child.link}`}>{child.text}</a></li> - ))} - </ul> - </div> - </li> - ))} - </ul> -</nav> |