Skip to content

Commit

Permalink
refactor: update breadcrumbs delimiter to "»" (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
diomed authored Jan 6, 2024
1 parent d929ce1 commit 1b41642
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Breadcrumbs.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ breadcrumbList[0] === "tags" &&
<ul>
<li>
<a href="/">Home</a>
<span aria-hidden="true">&gt;</span>
<span aria-hidden="true">&raquo;</span>
</li>
{
breadcrumbList.map((breadcrumb, index) =>
Expand All @@ -45,7 +45,7 @@ breadcrumbList[0] === "tags" &&
) : (
<li>
<a href={`/${breadcrumb}`}>{breadcrumb}</a>
<span aria-hidden="true">&gt;</span>
<span aria-hidden="true">&raquo;</span>
</li>
)
)
Expand Down

0 comments on commit 1b41642

Please sign in to comment.