mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
1.1 KiB
1.1 KiB
title | description | categories | keywords | action | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
LanguagePrefix | Returns the URL language prefix, if any, for the given site. |
|
Consider this site configuration:
{{< code-toggle file=hugo >}} defaultContentLanguage = 'de' defaultContentLanguageInSubdir = false
[languages.de] languageCode = 'de-DE' languageDirection = 'ltr' languageName = 'Deutsch' title = 'Projekt Dokumentation' weight = 1
[languages.en] languageCode = 'en-US' languageDirection = 'ltr' languageName = 'English' title = 'Project Documentation' weight = 2 {{< /code-toggle >}}
When visiting the German language site:
{{ .Site.LanguagePrefix }} → ""
When visiting the English language site:
{{ .Site.LanguagePrefix }} → /en
If you change defaultContentLanguageInSubdir
to true
, when visiting the German language site:
{{ .Site.LanguagePrefix }} → /de
You may use the LanguagePrefix
method with both monolingual and multilingual sites.