From 1bf4d8aca6f81f2dddd0262e74b278cd9985b53d Mon Sep 17 00:00:00 2001 From: Arne Rief Date: Fri, 8 Aug 2025 20:50:19 +0200 Subject: initial commit, basic setup --- hugo.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 hugo.toml (limited to 'hugo.toml') diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..f5c9f60 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,30 @@ +baseURL = "https://example.org/" +languageCode = "en-US" +title = "Your Website Name" + +[menus] + [[menus.main]] + name = "Home" + pageRef = "/" + weight = 10 + + [[menus.main]] + name = "Posts" + pageRef = "/posts" + weight = 20 + + [[menus.main]] + name = "About" + pageRef = "/about" + weight = 30 + + [[menus.main]] + name = "Tags" + pageRef = "/tags" + weight = 40 + +[params] + [params.author] + name = "Your Name" + email = "your@email.com" + -- cgit v1.2.3