diff options
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" + |
