23 lines
		
	
	
		
			950 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			950 B
		
	
	
	
		
			HTML
		
	
	
	
| {{ partial "navbar/select-theme-mobile" . }}
 | |
| {{ partial "search/site-search-mobile" . }}
 | |
| 
 | |
| <a role="button" class="navbar__burger" aria-label="menu" aria-expanded="false"
 | |
|   data-ani="{{ $.Site.Params.enableUiAnimation | default "true" }}">
 | |
|   <span aria-hidden="true"></span>
 | |
|   <span aria-hidden="true"></span>
 | |
|   <span aria-hidden="true"></span>
 | |
| </a>
 | |
| <div class="navbarm__collapse" data-open="false">
 | |
|   <ul>
 | |
|     {{ $current := . }}
 | |
|     {{ range .Site.Menus.main }}
 | |
|     {{ $active := or ($current.IsMenuCurrent "main" .) ($current.HasMenuCurrent "main" .) }}
 | |
|     {{ $active = or $active (eq .Name $current.Title) }}
 | |
|     {{ $active = or $active (eq (lower .URL) (lower $current.Title)) }}
 | |
|     {{ $active = or $active (eq (lower .URL) (lower $current.Type)) }}
 | |
|     <li class="navbarm__menu--item {{ if $active }}active{{ end }}">
 | |
|       <a href="{{ .URL | relLangURL }}">{{ safeHTML .Name }}</a>
 | |
|     </li>
 | |
|     {{ end }}
 | |
|   </ul>
 | |
| </div> |