hugo-theme-anubis2/layouts/partials/header.html

25 lines
752 B
HTML
Raw Normal View History

2021-05-17 20:04:42 +02:00
<div class="header-top">
2024-01-08 17:45:37 +01:00
<div class="header-top-left">
{{ partial "site-title.html" . }}
2024-03-04 08:17:16 +01:00
{{ partial "theme-switcher.html" . }}
2024-01-08 17:45:37 +01:00
{{ partial "social.html" . }}
</div>
<div class="header-top-right">
2024-03-04 08:17:16 +01:00
2024-01-08 17:45:37 +01:00
</div>
2021-05-17 20:04:42 +02:00
</div>
2024-01-08 17:45:37 +01:00
{{ if .Site.Menus.main }}
<nav class="noselect">
{{ $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 }}
2022-06-10 16:01:20 +02:00
{{ if .Site.Params.mathjax }}{{ partial "mathjax_support.html" . }}{{ end }}
2024-01-08 17:45:37 +01:00
{{ partial "header-extra.html" . }}