Skip to content
Snippets Groups Projects
Commit da0be892 authored by micressor's avatar micressor
Browse files

Fix top menu items not highlighted.

parent 58becd5f
No related branches found
No related tags found
1 merge request!24Feature hugo migration
......@@ -10,11 +10,10 @@ body, html {
line-height:1.3em;
}
body#index a#indexnav,
body#download a#downloadnav,
body#how a#hownav,
body#about a#aboutnav,
body#involved a#involvednav {color:#87C214;}
#nav #is-active {
color: #87C214;
}
#wrapper {
min-height:100%;
......
......@@ -24,9 +24,11 @@
<label for="menu-toggle"><img src="/img/menu.png" alt="Drop-down menu"></label>
<input type="checkbox" id="menu-toggle"/>
<ul id="menu">
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
<li>
<a id="{{ .Identifier }}nav" href="{{ .URL }}">{{ .Name }}</a>
<a {{ if eq $currentPage.URL .URL }}id="is-active"{{end}}
href="{{ .URL }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment