All checks were successful
Deploy Theme / deploy (push) Successful in 14s
14 lines
441 B
Handlebars
14 lines
441 B
Handlebars
<ul class="nav">
|
|
{{#foreach navigation}}
|
|
{{!--
|
|
We use Alpine to dynamically apply the nav-current class based on currentPath.
|
|
This works even when the navigation itself is not swapped by HTMX.
|
|
--}}
|
|
<li class="nav-{{slug}}" :class="currentPath === '{{url}}' ? 'nav-current' : ''">
|
|
<a href="{{url absolute="true"}}" class="nav-link">
|
|
{{label}}
|
|
</a>
|
|
</li>
|
|
{{/foreach}}
|
|
</ul>
|