summaryrefslogtreecommitdiff
path: root/examples/docs/src/components/SiteSidebar.astro
diff options
context:
space:
mode:
authorGravatar Laura Caroline <Hanawa02@users.noreply.github.com> 2021-06-11 21:55:13 +0200
committerGravatar GitHub <noreply@github.com> 2021-06-11 15:55:13 -0400
commit348d829e94b778874d13c8e07a5105321deab025 (patch)
tree3a261b56ee6db7d04577ef4d264a49ec6ed2077c /examples/docs/src/components/SiteSidebar.astro
parentfb02a482c3e1f72b47360933f43111605408a476 (diff)
downloadastro-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/components/SiteSidebar.astro')
-rw-r--r--examples/docs/src/components/SiteSidebar.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/docs/src/components/SiteSidebar.astro b/examples/docs/src/components/SiteSidebar.astro
index 7279d9aea..30b14621c 100644
--- a/examples/docs/src/components/SiteSidebar.astro
+++ b/examples/docs/src/components/SiteSidebar.astro
@@ -7,7 +7,7 @@ import { sidebar } from '../config.ts';
{sidebar.map(category => (
<li>
<div class="nav-group">
- <h4 class="nav-group-title">{category.text}</h4>
+ <h4 class="nav-group-title"><a href={category.link}>{category.text}</a></h4>
<ul>
{category.children.map(child => (
<li class="nav-link"><a href={child.link}>{child.text}</a></li>