From fff746a63c3fbaa7cd2c1c39ed41ae55eba51197 Mon Sep 17 00:00:00 2001 From: fzorb Date: Thu, 5 Sep 2024 17:32:29 +0300 Subject: [PATCH] perhaps this will fix it --- hugo.toml | 34 ++++++++++++++++++++++++++++++++++ hugo.yml | 24 ------------------------ 2 files changed, 34 insertions(+), 24 deletions(-) create mode 100644 hugo.toml delete mode 100644 hugo.yml diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..f9ec3eb --- /dev/null +++ b/hugo.toml @@ -0,0 +1,34 @@ +baseURL = "https://fzorb.xyz/" +languageCode = "en-us" +title = "FzOrb's blog" +theme = "zmin" + +[[menus.main]] +name = "Home" +pageRef = "/" +weight = 10 + +[[menus.main]] +name = "Technology" +pageRef = "/technology" +weight = 20 + +[[menus.main]] +name = "Trains" +pageRef = "/trains" +weight = 30 + +[[menus.main]] +name = "Miscellaneous" +pageRef = "/misc" +weight = 40 + +[[menus.main]] +name = "Donate" +pageRef = "/donate" +weight = 50 + +[[menus.main]] +name = "Services" +pageRef = "/services" +weight = 60 diff --git a/hugo.yml b/hugo.yml deleted file mode 100644 index 6b28db9..0000000 --- a/hugo.yml +++ /dev/null @@ -1,24 +0,0 @@ -baseURL: 'https://fzorb.xyz/' -languageCode: 'en-us' -title: "FzOrb's blog" -theme: 'zmin' -menus: - main: - - name: Home - pageRef: / - weight: 10 - - name: Technology - pageRef: /technology - weight: 20 - - name: Trains - pageRef: /trains - weight: 30 - - name: Miscellaneous - pageRef: /misc - weight: 40 - - name: Donate - pageRef: /donate - weight: 50 - - name: Services - pageRef: /services - weight: 60