Skip to content

Commit

Permalink
docs: fix sidebar links
Browse files Browse the repository at this point in the history
For some reason some links were not working in dev mode,
adding a final slash fixed it.
  • Loading branch information
ludofischer committed Mar 25, 2024
1 parent 87eb918 commit c0e8a3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/src/_includes/sidebar.njk
Expand Up @@ -14,8 +14,8 @@
<li>
<h2 class="f4">Developer Guide</h2>
<ul>
<li class="nav-link"><a href="/docs/contributing" {% if page.url == "/docs/contributing/" %} aria-current="page"{% endif %}>Contributing</a></li>
<li class="nav-link"><a href="/docs/changelog" {% if page.url == "/docs/changelog/" %} aria-current="page"{% endif %}>Changelog</a></li>
<li class="nav-link"><a href="/docs/contributing/" {% if page.url == "/docs/contributing/" %} aria-current="page"{% endif %}>Contributing</a></li>
<li class="nav-link"><a href="/docs/changelog/" {% if page.url == "/docs/changelog/" %} aria-current="page"{% endif %}>Changelog</a></li>
</ul>
</li>
</ul>
Expand Down

0 comments on commit c0e8a3c

Please sign in to comment.