Skip to content

Commit

Permalink
Update Aside.astro
Browse files Browse the repository at this point in the history
  • Loading branch information
filipe-2 authored Dec 8, 2024
1 parent fa04dec commit 6a8f447
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/components/Aside.astro
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,30 @@ const currentPath = pathname.slice(1);
</li>
</ul>
</li>

<li class="aside__topic">
<div class="aside__topic-title">
<a href="/contributing/issues">Contributing</a>
</div>

<ul class="aside__topic-items">
<li class="aside__topic-item">
<a
class={currentPath === "contributing/issues" ? "active" : ""}
href="/contributing/issues">Issues and Bugs</a
>
</li>

<li class="aside__topic-item">
<a
class={currentPath === "contributing/prs" ? "active" : ""}
href="/contributing/prs"
>
Pull Requests
</a>
</li>
</ul>
</li>
</ul>
</nav>
</aside>

0 comments on commit 6a8f447

Please sign in to comment.