summaryrefslogtreecommitdiffstats
path: root/hugo.toml
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-04-04 15:30:33 +0200
committerDanilo M. <danix@danix.xyz>2026-04-04 15:30:33 +0200
commit799bd2304a82d35991876d42fc32a8b8be978da1 (patch)
tree77373500f6cb733f3bc490dc7fe71db8bc6a7fa8 /hugo.toml
downloaddanixxyz-theme-799bd2304a82d35991876d42fc32a8b8be978da1.tar.gz
danixxyz-theme-799bd2304a82d35991876d42fc32a8b8be978da1.zip
initial theme setup.
Diffstat (limited to 'hugo.toml')
-rw-r--r--hugo.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/hugo.toml b/hugo.toml
new file mode 100644
index 0000000..59cbe11
--- /dev/null
+++ b/hugo.toml
@@ -0,0 +1,24 @@
+baseURL = 'https://example.org/'
+locale = 'en-US'
+title = 'My New Hugo Project'
+
+[menus]
+ [[menus.main]]
+ name = 'Home'
+ pageRef = '/'
+ weight = 10
+
+ [[menus.main]]
+ name = 'Posts'
+ pageRef = '/posts'
+ weight = 20
+
+ [[menus.main]]
+ name = 'Tags'
+ pageRef = '/tags'
+ weight = 30
+
+[module]
+ [module.hugoVersion]
+ extended = false
+ min = '0.146.0'