aboutsummaryrefslogtreecommitdiff
path: root/exampleSite/config.toml
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/config.toml')
-rw-r--r--exampleSite/config.toml10
1 files changed, 7 insertions, 3 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 27e1b13..eeaabea 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -13,20 +13,24 @@ enableGitInfo = true
# pygmentsStyle = 'monokailight'
pygmentsCodeFences = true
-# Multilang config
-defaultContentLanguage = 'en'
-
+# Multi-lingual mode config
+# There are different options to translate files
+# See https://gohugo.io/content-management/multilingual/#translation-by-filename
+# And https://gohugo.io/content-management/multilingual/#translation-by-content-directory
[languages]
[languages.en]
languageName = 'English'
+ contentDir = 'content'
weight = 1
[languages.ru]
languageName = 'Russian'
+ contentDir = 'content.ru'
weight = 2
[languages.cn]
languageName = 'Chinese'
+ contentDir = 'content.cn'
weight = 3
[params]