e007bdd4e7
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
16 lines
482 B
HTML
16 lines
482 B
HTML
{{/*
|
|
Returns the language direction using the supported Hugo API for the running version.
|
|
|
|
Hugo v0.158.0 deprecated Language.LanguageDirection in favor of Language.Direction.
|
|
Keep the fallback so Hextra can continue supporting Hugo >= 0.146.0.
|
|
*/}}
|
|
{{- $language := . -}}
|
|
{{- $direction := "" -}}
|
|
{{- if ge (hugo.Version) "0.158.0" -}}
|
|
{{- $direction = $language.Direction -}}
|
|
{{- else -}}
|
|
{{- $direction = $language.LanguageDirection -}}
|
|
{{- end -}}
|
|
|
|
{{- return $direction -}}
|