summaryrefslogtreecommitdiff
path: root/themes/new_theme/layouts/partials/menu.html
blob: df9c403deb8f96d08827c9072949d8e45176d33c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<nav class="menu" itemscope="itemscope" itemtype="http://schema.org/SiteNavigationElement">
	<ul class="menu__list">
		{{- if .Site.Menus.main }}
		{{- $currentNode := . }}
		{{- range sort .Site.Menus.main }}
		{{- if ( not ( eq .Name "Data Protection And Privacy" ) ) }}
			<li class="menu__item {{if or ($currentNode.IsMenuCurrent "main" .) ($currentNode.HasMenuCurrent "main" .) }}menu__item--active{{end}}"><a class="menu__link" href="{{ .URL }}">{{ .Name | upper }}</a></li>
		{{- end }}
		{{- end }}
		{{- end }}
	</ul>
</nav>