e007bdd4e7
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
15 lines
396 B
HTML
15 lines
396 B
HTML
{{/*
|
|
Returns all sites using the supported Hugo API for the running version.
|
|
|
|
Hugo v0.156.0 deprecated site.Sites / page.Sites in favor of hugo.Sites.
|
|
Keep the fallback so Hextra can continue supporting Hugo >= 0.146.0.
|
|
*/}}
|
|
{{- $sites := slice -}}
|
|
{{- if ge (hugo.Version) "0.156.0" -}}
|
|
{{- $sites = hugo.Sites -}}
|
|
{{- else -}}
|
|
{{- $sites = site.Sites -}}
|
|
{{- end -}}
|
|
|
|
{{- return $sites -}}
|