2022-11-09 23:52:11 +00:00
|
|
|
<header class="py-6 font-semibold text-neutral-900 dark:text-neutral print:hidden sm:py-10">
|
2022-11-10 00:32:43 +00:00
|
|
|
<nav class="flex items-start justify-between sm:items-center">
|
2022-11-09 23:52:11 +00:00
|
|
|
{{/* Site logo/title */}}
|
2022-11-10 00:32:43 +00:00
|
|
|
<div class="z-40 flex flex-row items-center">
|
2022-11-09 23:52:11 +00:00
|
|
|
{{ partial "logo.html" . }}
|
|
|
|
{{ partial "translations.html" . }}
|
|
|
|
</div>
|
|
|
|
{{ if or .Site.Menus.main (.Site.Params.enableSearch | default false) }}
|
|
|
|
{{/* Hamburger menu */}}
|
|
|
|
<label id="menu-button" for="menu-controller" class="block sm:hidden">
|
|
|
|
<input type="checkbox" id="menu-controller" class="hidden" />
|
|
|
|
<div class="cursor-pointer hover:text-primary-600 dark:hover:text-primary-400">
|
|
|
|
{{ partial "icon.html" "bars" }}
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
id="menu-wrapper"
|
2023-01-12 22:04:34 +00:00
|
|
|
class="fixed inset-0 z-30 invisible w-full h-full m-auto overflow-auto transition-opacity opacity-0 cursor-default bg-neutral-100/50 backdrop-blur-sm dark:bg-neutral-900/50"
|
2022-11-09 23:52:11 +00:00
|
|
|
>
|
|
|
|
<ul
|
2023-01-12 22:04:34 +00:00
|
|
|
class="flex flex-col w-full px-6 py-6 mx-auto overflow-visible list-none max-w-7xl ltr:text-right rtl:text-left sm:px-14 sm:py-10 sm:pt-10 md:px-24 lg:px-32"
|
2022-11-09 23:52:11 +00:00
|
|
|
>
|
|
|
|
<li class="mb-1">
|
|
|
|
<span class="cursor-pointer hover:text-primary-600 dark:hover:text-primary-400"
|
|
|
|
>{{ partial "icon.html" "xmark" }}</span
|
|
|
|
>
|
|
|
|
</li>
|
|
|
|
{{ if .Site.Menus.main }}
|
|
|
|
{{ range .Site.Menus.main }}
|
|
|
|
<li class="mb-1">
|
|
|
|
<a
|
|
|
|
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2"
|
|
|
|
href="{{ .URL }}"
|
|
|
|
title="{{ .Title }}"
|
|
|
|
>{{ .Name | markdownify | emojify }}</a
|
|
|
|
>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.enableSearch | default false }}
|
|
|
|
<li>
|
|
|
|
<button
|
|
|
|
id="search-button-2"
|
|
|
|
class="text-base hover:text-primary-600 dark:hover:text-primary-400"
|
|
|
|
title="{{ i18n "search.open_button_title" }}"
|
|
|
|
>
|
|
|
|
{{ partial "icon.html" "search" }}
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</label>
|
|
|
|
{{/* Basic menu */}}
|
2023-01-12 22:04:34 +00:00
|
|
|
<ul class="flex-row hidden list-none ltr:text-right rtl:text-left sm:flex">
|
2022-11-09 23:52:11 +00:00
|
|
|
{{ if .Site.Menus.main }}
|
|
|
|
{{ range .Site.Menus.main }}
|
|
|
|
<li class="mb-1 sm:mb-0 ltr:sm:mr-7 ltr:sm:last:mr-0 rtl:sm:ml-7 rtl:sm:last:ml-0">
|
|
|
|
<a
|
|
|
|
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2"
|
|
|
|
href="{{ .URL }}"
|
|
|
|
title="{{ .Title }}"
|
|
|
|
>{{ .Name | markdownify | emojify }}</a
|
|
|
|
>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.enableSearch | default false }}
|
|
|
|
<li class="ltr:sm:mr-7 ltr:sm:last:mr-0 rtl:sm:ml-7 rtl:sm:last:ml-0">
|
|
|
|
<button
|
|
|
|
id="search-button-1"
|
|
|
|
class="text-base hover:text-primary-600 dark:hover:text-primary-400"
|
|
|
|
title="{{ i18n "search.open_button_title" }}"
|
|
|
|
>
|
|
|
|
{{ partial "icon.html" "search" }}
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|
|
|
|
</nav>
|
|
|
|
</header>
|