mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 16:31:52 +01:00
84 lines
2.6 KiB
HTML
84 lines
2.6 KiB
HTML
<div class="main-menu flex items-center w-full gap-2 p-1 pl-0">
|
|
{{ if .Site.Params.Logo }}
|
|
{{ $logo := resources.Get .Site.Params.Logo }}
|
|
{{ if $logo }}
|
|
<div>
|
|
<a href="{{ "" | relLangURL }}" class="flex">
|
|
<span class="sr-only">{{ .Site.Title | markdownify }}</span>
|
|
{{ if eq $logo.MediaType.SubType "svg" }}
|
|
<span class="logo object-scale-down object-left nozoom">
|
|
{{ $logo.Content | safeHTML }}
|
|
</span>
|
|
{{ else }}
|
|
<img
|
|
src="{{ $logo.RelPermalink }}"
|
|
width="{{ div $logo.Width 2 }}"
|
|
height="{{ div $logo.Height 2 }}"
|
|
class="logo max-h-20 max-w-20 object-scale-down object-left nozoom"
|
|
alt="">
|
|
{{ end }}
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ if not .Site.Params.disableTextInHeader | default true }}
|
|
<a href="{{ "" | relLangURL }}" class="text-base font-medium truncate min-w-0 shrink">
|
|
{{ .Site.Title | markdownify }}
|
|
</a>
|
|
{{ end }}
|
|
<div class="flex items-center ms-auto">
|
|
<div class="hidden md:flex">
|
|
{{ partial "header/components/desktop-menu.html" . }}
|
|
</div>
|
|
<div class="flex md:hidden">
|
|
{{ partial "header/components/mobile-menu.html" . }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{ if .Site.Menus.subnavigation }}
|
|
<div
|
|
class="main-menu flex pb-3 flex-col items-end justify-between md:justify-start space-x-3 {{ if .Site.Params.Logo }}
|
|
-mt-[15px]
|
|
{{ end }}">
|
|
<div class="hidden md:flex items-center space-x-5">
|
|
{{ range .Site.Menus.subnavigation }}
|
|
<a
|
|
href="{{ .URL }}"
|
|
{{ if or (strings.HasPrefix .URL "http:" ) (strings.HasPrefix .URL "https:" ) }}
|
|
target="_blank"
|
|
{{ end }}
|
|
class="flex items-center bf-icon-color-hover">
|
|
{{ if .Pre }}
|
|
<span {{ if and .Pre .Name }}class="mr-1"{{ end }}>
|
|
{{ partial "icon.html" .Pre }}
|
|
</span>
|
|
{{ end }}
|
|
<span class="text-xs font-light" title="{{ .Title }}">
|
|
{{ .Name | markdownify }}
|
|
</span>
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.highlightCurrentMenuArea }}
|
|
<script>
|
|
(function () {
|
|
var mainmenu = document.querySelector(".main-menu");
|
|
if (!mainmenu) return;
|
|
|
|
var path = window.location.pathname;
|
|
var links = mainmenu.querySelectorAll('a[href="' + path + '"]');
|
|
|
|
links.forEach(function (link) {
|
|
var targets = link.querySelectorAll("span");
|
|
targets.forEach(function (el) {
|
|
el.classList.add("active");
|
|
});
|
|
});
|
|
})();
|
|
</script>
|
|
{{ end }}
|