mirror of
https://github.com/imfing/hextra.git
synced 2025-05-15 03:06:41 -04:00
18 lines
398 B
HTML
18 lines
398 B
HTML
{{/*
|
|
Utility to retrieve a translated page given a page and a language code.
|
|
|
|
If the page is not translated, it returns the original page.
|
|
*/}}
|
|
{{- $page := .page -}}
|
|
{{- $lang := .lang -}}
|
|
|
|
{{- if $page.IsTranslated -}}
|
|
{{- range $page.AllTranslations -}}
|
|
{{- if eq .Language.LanguageCode $lang -}}
|
|
{{- $page = . -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{- return $page -}}
|