diff options
author | Friedrich Beckmann <friedrich.beckmann@gmx.de> | 2025-06-14 13:48:40 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@gmx.de> | 2025-06-14 13:48:40 +0200 |
commit | e4a8a804aa5353bcaa4403da291e02bd9fcd22db (patch) | |
tree | 140e3b62e66c10952392c6c1bb36104d40d4e24a /hugo.toml |
initial version
Diffstat (limited to 'hugo.toml')
-rw-r--r-- | hugo.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..0333872 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,31 @@ +baseURL = 'http://fredowski.duckdns.org' +defaultContentLanguage = 'de' +title = 'SillaB' +theme = 'fredo' + +[menus] + [[menus.main]] + name = 'Home' + pageRef = '/' + weight = 10 + [[menus.main]] + name = 'ShadesOfBlue' + pageRef = '/posts/shadesofblue' + weight = 20 + [[menus.main]] + name = 'Hawaiians' + pageRef = '/posts/hawaiians' + weight = 30 + [[menus.main]] + name = 'SnoopAndTheGang' + pageRef = '/posts/snoopandthegang' + weight = 30 + [[menus.main]] + name = 'About Me' + pageRef = '/about' + weight = 40 + +[markup] + [markup.goldmark] + [markup.goldmark.renderer] + unsafe = true |