From d0aa620a3c21ee547da65767d4a1535c5202e02f Mon Sep 17 00:00:00 2001 From: Kumi Date: Mon, 15 Jul 2024 08:29:31 +0200 Subject: [PATCH] feat(config): update blog URL and add 'about' navigation link Fix baseURL to 'https://blog.rottenwheel.com'. Modifying main menu by linking 'blog' to home and adding an 'about' link back to 'https://rottenwheel.com'. --- hugo.toml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/hugo.toml b/hugo.toml index 5898c92..b8d6a34 100644 --- a/hugo.toml +++ b/hugo.toml @@ -1,11 +1,15 @@ -baseURL = 'https://www.rottenwheel.com/' +baseURL = 'https://blog.rottenwheel.com/' languageCode = 'en-us' title = 'rottenwheel' theme = 'hugo-rottenwheel' -disableKinds = [ 'taxonomy' ] +disableKinds = ['taxonomy'] enableRobotsTXT = true [menu] - [[menu.main]] - url = "/posts/" - name = "blog" +[[menu.main]] +url = "/" +name = "blog" + +[[menu.main]] +url = "https://rottenwheel.com" +name = "about"