congo/layouts/partials/header.html

62 lines
2.0 KiB
HTML
Raw Normal View History

2021-09-22 02:24:46 +00:00
<header
class="flex justify-between py-6 font-semibold sm:items-center sm:py-10 text-neutral-900 dark:text-neutral"
2021-09-22 02:24:46 +00:00
>
2021-10-19 04:44:23 +00:00
{{/* Site logo/title */}}
2021-08-11 05:28:33 +00:00
<div>
2021-09-22 02:24:46 +00:00
{{ if .Site.Params.Logo -}}
{{ $logo := resources.Get .Site.Params.Logo }}
{{ if $logo }}
2022-01-11 01:00:27 +00:00
<a href="{{ "/" | relLangURL }}">
<img
src="{{ $logo.RelPermalink }}"
width="{{ div $logo.Width 2 }}"
height="{{ div $logo.Height 2 }}"
class="max-w-[10rem] max-h-[10rem] object-scale-down object-left"
alt="{{ .Site.Title }}"
/>
</a>
2021-09-22 02:24:46 +00:00
{{ end }}
{{ else }}
<a
class="hover:underline hover:decoration-primary-500 hover:decoration-2 hover:underline-offset-2"
2021-09-22 02:24:46 +00:00
rel="me"
2022-01-11 01:00:27 +00:00
href="{{ "/" | relLangURL }}"
>{{ .Site.Title | markdownify | emojify }}</a
2021-09-22 02:24:46 +00:00
>
{{- end }}
2022-01-11 01:00:27 +00:00
{{ partial "translations.html" . }}
2021-08-11 05:28:33 +00:00
</div>
2021-10-19 04:44:23 +00:00
{{/* Main menu */}}
{{ if .Site.Menus.main }}
<nav>
<ul class="flex flex-col list-none sm:flex-row">
{{ range .Site.Menus.main }}
2022-01-11 05:17:49 +00:00
<li
class="mb-1 ltr:text-right rtl:text-left sm:mb-0 ltr:sm:mr-7 ltr:sm:last:mr-0 rtl:sm:ml-7 rtl:sm:last:ml-0"
>
2021-10-19 04:44:23 +00:00
<a
class="hover:underline hover:decoration-primary-500 hover:decoration-2 hover:underline-offset-2"
2021-10-19 04:44:23 +00:00
href="{{ .URL }}"
title="{{ .Title }}"
>{{ .Name | markdownify | emojify }}</a
2021-10-19 04:44:23 +00:00
>
</li>
{{ end }}
2022-01-13 04:56:30 +00:00
{{ if .Site.Params.enableSearch | default false }}
<li
class="ltr:text-right rtl:text-left ltr:sm:mr-7 ltr:sm:last:mr-0 rtl:sm:ml-7 rtl:sm:last:ml-0"
>
<button
id="search-button"
class="text-base hover:text-primary-600 dark:hover:text-primary-400"
2022-01-13 04:56:30 +00:00
title="{{ i18n "search.open_button_title" }}"
>
{{ partial "icon.html" "search" }}
</button>
</li>
{{ end }}
2021-10-19 04:44:23 +00:00
</ul>
</nav>
{{ end }}
2021-08-11 05:28:33 +00:00
</header>