msfjarvis.dev/layouts/partials/nav.html
Harsh Shandilya 543916f14a nav: fix aria attributes
Lighthouse reports that the aria-controls attribute has an invalid value[1]. This
patch resolves it, fixing the lighthouse score[2].

1: https://github.com/msfjarvis/msfjarvis.dev/suites/933117726/artifacts/11488586
2: https://github.com/msfjarvis/msfjarvis.dev/suites/933157898/artifacts/11489135

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-07-18 21:49:48 +05:30

12 lines
336 B
HTML

<nav class="nav" id="navigation">
<ul class="nav__list">
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
<li>
<a {{ if or ($currentPage.IsMenuCurrent "main" .) (eq $currentPage.Section .Identifier) }} class="active"
{{end}} href="{{ .URL }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
</nav>