Hi
I have a multilingual site. (EN/DE) It has the following folder structure.
content/blog/post1/index.md
content/_index.de.md
content/_index.en.md
content/anothersite.de.md
content/anothersite.en.md
i18n/de.yaml
i18n/en.yaml
Inside my config I have the following language related settings:
defaultContentLanguage: en
defaultContentLanguageInSubdir: true
disableDefaultLanguageRedirect: false
languages:
en:
languageCode: en-US
languageName: EN
weight: 1
params:
xxx
de:
languageCode: de-DE
languageName: DE
weight: 2
params:
xxx
hideUntranslated: false
Since the blog is only EN, it does not show up on DE pages. {{ range where site.RegularPages "Type" "blog" }}
for example returns 0 elements on a DE page.
Is there a way to configure Hugo to “accept” a section in both languages? (or a sort of override function)
Thanks