Skip to content

Commit

Permalink
Merge pull request #74 from Tyrsson/main-nav-fix
Browse files Browse the repository at this point in the history
Fixes the home menu entry in the main navigation.
  • Loading branch information
Ocramius committed May 22, 2023
2 parents 44328a0 + 97d7864 commit e4bfbff
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions module/Application/view/layout/layout.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,12 @@
</div>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="<?= $this->url('home') ?>">
Home <span class="sr-only">(current)</span>
<li class="nav-item">
<a
class="nav-link active"
aria-current="page"
href="<?= $this->url('home') ?>"
>Home
</a>
</li>
</ul>
Expand Down

0 comments on commit e4bfbff

Please sign in to comment.