14 lines
414 B
HTML
14 lines
414 B
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 := .Resize "64x" -}}
|
|
<img src="{{ $resized.RelPermalink }}" alt="">
|
|
{{- end -}}
|
|
<strong>{{ $site.Title }}</strong>
|
|
</a>
|