diff options
Diffstat (limited to 'hugo.toml')
| -rw-r--r-- | hugo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..26150a4 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,25 @@ +baseURL = 'https://www.samanthony.xyz/' +languageCode = 'en-us' +title = "Sam Anthony" +theme = 'aoidh' + +[params] + [params.author] + name = "Sam Anthony" + email = "sam@samanthony.xyz" + +[menus] + [[menus.main]] + name = 'Home' + pageRef = '/' + weight = 1 + + [[menus.main]] + name = 'Articles' + pageRef = '/articles' + weight = 2 + + [[menus.main]] + name = 'Projects' + url = 'http://git.samanthony.xyz/' + weight = 3 |