hugo-book-theme/layouts/partials/docs/brand.html
Eitan Adler 56bdf62c9d use .Sites.Default instead of .Sites.First
# Problem

The warning
```
INFO  deprecated: .Sites.First was deprecated in Hugo v0.127.0 and will be removed in a future release. Use .Sites.Default instead.
```

appears

# Solution

Follow the warning. Use `.Sites.Default`
2024-06-05 23:22:40 -07:00

8 lines
302 B
HTML

<h2 class="book-brand">
<a class="flex align-center" href="{{ cond (not .Site.Home.File) .Sites.Default.Home.RelPermalink .Site.Home.RelPermalink }}">
{{- with .Site.Params.BookLogo -}}
<img src="{{ . | relURL }}" alt="Logo" />
{{- end -}}
<span>{{ .Site.Title }}</span>
</a>
</h2>