18 lines
		
	
	
	
		
			579 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			579 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="header-top">
 | |
|     {{ partial "site-title.html" . }}
 | |
|     {{ partial "social.html" . }}
 | |
| </div>
 | |
| {{ if .Site.Menus.main }}
 | |
|     <nav>
 | |
|         {{ $currentPage := . }}
 | |
|         {{ range .Site.Menus.main }}
 | |
|         <a class="{{if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }} active{{end}}" href="{{ .URL | absLangURL }}" title="{{ .Title }}">{{ .Name }}</a>
 | |
|         {{ end }}
 | |
|     </nav>
 | |
| {{ else }}
 | |
|     <nav></nav>
 | |
| {{ end }}
 | |
| 
 | |
| {{ if .Site.Params.mathjax }}{{ partial "mathjax_support.html" . }}{{ end }}
 | |
| 
 | |
| {{ partial "header-extra.html" . }}
 |