diff options
| author | Arne Rief <riearn@proton.me> | 2025-08-08 20:50:19 +0200 |
|---|---|---|
| committer | Arne Rief <riearn@proton.me> | 2025-08-08 20:50:19 +0200 |
| commit | 1bf4d8aca6f81f2dddd0262e74b278cd9985b53d (patch) | |
| tree | 9c4168e894bc52595dadd2d99b29305473f2ebcc /hugo.toml | |
initial commit, basic setup
Diffstat (limited to 'hugo.toml')
| -rw-r--r-- | hugo.toml | 30 |
1 files changed, 30 insertions, 0 deletions
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" + |
