summaryrefslogtreecommitdiffstats
path: root/hugo.toml
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-12-23 16:47:57 -0330
committerSam Anthony <sam@samanthony.xyz>2025-12-23 16:47:57 -0330
commit91fdb1440c99e4614e980d027c627dfc4a029230 (patch)
tree0295e470a89a13bf6e2626204f3f38188fa27025 /hugo.toml
parent627cdfd418c6d55c4b8e130068aa34de23324c0d (diff)
downloadsamanthony.xyz-91fdb1440c99e4614e980d027c627dfc4a029230.zip
move menu entries from theme config to site config
Diffstat (limited to 'hugo.toml')
-rw-r--r--hugo.toml16
1 files changed, 15 insertions, 1 deletions
diff --git a/hugo.toml b/hugo.toml
index 5ed3998..79b60a3 100644
--- a/hugo.toml
+++ b/hugo.toml
@@ -2,5 +2,19 @@ baseURL = 'https://www.samanthony.xyz/'
languageCode = 'en-us'
title = "Sam Anthony's Webpage"
theme = 'aoidh'
+
[params]
- author = "Sam Anthony"
+ author = "Sam Anthony"
+
+[menus]
+ [[menus.main]]
+ name = 'Home'
+ pageRef = '/'
+
+ [[menus.main]]
+ name = 'Posts'
+ pageRef = '/posts'
+
+ [[menus.main]]
+ name = 'Tags'
+ pageRef = '/tags'