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

github.com/mdashx/basicwebtheme.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.toml30
1 files changed, 26 insertions, 4 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 0149921..c3322c7 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -1,12 +1,34 @@
title = "Example Site For Basic Web Theme"
baseURL = "https://demo.basicwebtheme.com"
languageCode = "en-us"
-theme = "hugo-theme-basic-web-theme"
+theme = "basicwebtheme"
themesDir = "../.."
[params]
headerImage = "/assets/images/header.svg"
-[taxonomies]
-tag = "tags"
-author = "authors" \ No newline at end of file
+[menu]
+
+[[menu.main]]
+title = "Home"
+name = "The homepage"
+url = "/"
+weight = 1
+
+[[menu.main]]
+title = "Posts"
+name = "All posts"
+url = "/post"
+weight = 2
+
+[[menu.main]]
+title = "Archive"
+name = "All posts with tags"
+url = "/archives"
+weight = 3
+
+[[menu.main]]
+title = "About"
+name = "About page"
+url = "/about"
+weight = 4 \ No newline at end of file