Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/maxlefou/hugo.386.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/config.toml')
-rw-r--r--exampleSite/config.toml44
1 files changed, 41 insertions, 3 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 4ad9f3d..b55cdcf 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -1,6 +1,6 @@
-baseURL = "/"
-languageCode = "en-us"
+baseURL = "https://example.com"
title = "HUGO.386"
+languageCode = "en"
DefaultContentLanguage = "en"
theme = "hugo.386"
preserveTaxonomyNames = true
@@ -29,4 +29,42 @@ preserveTaxonomyNames = true
twitter = "https://twitter.com"
linkedin = "https://linkedin.com"
github = "https://github.com"
- gitlab = "https://gitlab.com" \ No newline at end of file
+ gitlab = "https://gitlab.com"
+
+[menu]
+
+ [[menu.main]]
+ identifier = "about"
+ name = "About"
+ url = "/about/"
+ weight = 10
+
+ [[menu.main]]
+ identifier = "posts"
+ name = "All posts"
+ url = "/post/"
+ weight = 20
+
+[taxonomies]
+category = "categories"
+tag = "tags"
+
+
+[privacy]
+
+ [privacy.vimeo]
+ disabled = false
+ simple = true
+
+ [privacy.twitter]
+ disabled = false
+ enableDNT = true
+ simple = true
+
+ [privacy.instagram]
+ disabled = false
+ simple = true
+
+ [privacy.youtube]
+ disabled = false
+ privacyEnhanced = true \ No newline at end of file