Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Address Hugo deprecation warning: use hugo.IsMultilingual #4962

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions layouts/partials/i18n/fallback-page.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{{/*

Returns the fallback page of this page, if it has one.
A fallback page, is a page in the default site language
that has been mounted under this locale as a fallback
when this locale is missing a translation.
Returns the fallback page of this page, if it has one. A fallback page is a
page in the default site language that has been mounted under this locale as a
fallback when this locale is missing a translation.

*/ -}}

{{ $result := false -}}

{{ if and .Site.IsMultiLingual .File -}}
{{ if and hugo.IsMultilingual .File -}}
{{ $defaultLang := .Site.Sites.Default.Language.Lang -}}

{{ $resultsArray := where .Translations "Lang" $defaultLang -}}
Expand Down
Loading