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

27 lines
852 B
HTML
Raw Permalink 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-04-09 14:03:09 +02:00
{{ partial "theme-switcher.html" . }}
{{ partial "social-icons.html" . }}
2024-01-08 17:45:37 +01:00
</div>
<div class="header-top-right">
2024-04-09 14:03:09 +02: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 }}
{{/* .Params is the current page config. .Site.Params is globall config in hugo.toml */}}
{{ if or .Site.Params.math .Params.math }}{{ partial "mathjax_support.html" . }}{{ end }}
2022-06-10 16:01:20 +02:00
2024-04-09 14:03:09 +02:00
{{ partial "header-extra.html" . }}