1
Files
2025/themes/2026/layouts/_partials/site-title.html
2026-02-21 01:50:39 +01:00

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>