26 lines
1.0 KiB
HTML
26 lines
1.0 KiB
HTML
{{- $site := .Site -}}
|
|
{{- if not $site -}}
|
|
{{- $site = . -}}
|
|
{{- end -}}
|
|
{{- $logoPath := $site.Params.logo | default "logo-large.png" -}}
|
|
{{- $logo := resources.GetMatch $logoPath -}}
|
|
<a href="{{ "/" | relURL }}" aria-label="Revenir à l'accueil">
|
|
{{- with $logo -}}
|
|
{{- $resized := partial "media/process-image.html" (dict
|
|
"image" .
|
|
"action" "Resize"
|
|
"spec" "64x"
|
|
) -}}
|
|
<img src="{{ $resized.RelPermalink }}" alt="">
|
|
{{- end -}}
|
|
<strong>{{ $site.Title }}</strong>
|
|
</a>
|
|
<form class="site-search" role="search" method="get" action="{{ $site.Params.search.action | relURL }}" aria-label="Recherche">
|
|
<input id="header-search-input" type="search" name="{{ $site.Params.search.param }}" required aria-label="Recherche">
|
|
<button type="submit" class="ui-button" aria-label="Lancer la recherche" title="Lancer la recherche">
|
|
<svg viewBox="0 0 24 24" aria-hidden="true">
|
|
<path d="M11 4a7 7 0 1 0 4.9 12l4.5 4.5 1.4-1.4-4.5-4.5A7 7 0 0 0 11 4Zm0 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z"></path>
|
|
</svg>
|
|
</button>
|
|
</form>
|