This repository has been archived on 2023-01-31. You can view files and clone it, but cannot push or open issues or pull requests.
sophie-lewis-hugo/themes/sophie-lewis/layouts/partials/nav.html
Pau 63c6aa9df6
All checks were successful
continuous-integration/drone/push Build is passing
courses-page 1.0
2023-01-13 11:14:56 +00:00

16 lines
557 B
HTML

<nav>
<div class="tabs is-fullwidth nav-tabs is-uppercase">
<ul>
<li{{ if eq $.Page.Params.Title "index" }} class="is-active"{{ end }}><a href="/">Home</a></li>
{{ range $nav_tab := site.Params.navbar }}
{{ $nav_title := replace $nav_tab "-" " " | title }}
{{ if eq $.Page.Params.title $nav_title }}
<li class="is-active"><a href="/{{$nav_tab}}">{{ $nav_title }}</a></li>
{{else}}
<li><a href="/{{$nav_tab}}">{{ $nav_title }}</a></li>
{{ end }}
{{ end }}
</ul>
</div>
</nav>