From fc1c0fdbb4a7688cf558ef517ed71290bc5ac464 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Tue, 13 Aug 2024 02:01:33 +0200 Subject: [PATCH] Move to hugo.yaml --- config.toml | 36 ------------------------------------ hugo.yaml | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 36 deletions(-) delete mode 100644 config.toml create mode 100644 hugo.yaml diff --git a/config.toml b/config.toml deleted file mode 100644 index 832eaeb..0000000 --- a/config.toml +++ /dev/null @@ -1,36 +0,0 @@ -baseURL = 'https://sabbatical.ipng.nl/' -languageCode = 'en-us' -title = "Pim's Sabbatical 2024" -theme = 'hugo-theme-notrack' - -mainSections = ["blog"] -# disqusShortname = "example" -paginate = 4 - -[params] - author = "Pim van Pelt" - siteHeading = "Sabbatical 2024" # defaults to author - favicon = "favicon.ico" # Adds a small icon next to the page title in a tab - showBlogLatest = true - mainSections = ["blog"] - showTaxonomyLinks = false - nBlogLatest = 7 - Paginate = 14 - blogLatestHeading = "Latest Dabblings" - footer = "This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License." - - [params.social] - email = "pim+sabbatical@ipng.nl" - mastodon = "IPngNetworks" - twitter = "IPngNetworks" - linkedin = "pimvanpelt" - instagram = "IPngNetworks" - -[taxonomies] - year = "year" - month = "month" - tags = "tags" - categories = "categories" - -[permalinks] - blog = "/blog/:year/:month/:day/:slug" diff --git a/hugo.yaml b/hugo.yaml new file mode 100644 index 0000000..9093331 --- /dev/null +++ b/hugo.yaml @@ -0,0 +1,35 @@ +baseURL: 'https://sabbatical.ipng.nl/' +languageCode: 'en-us' +title: "Pim's Sabbatical 2024" +theme: 'hugo-theme-notrack' + +mainSections: ["blog"] +paginate: 4 + +params: + author: "Pim van Pelt" + siteHeading: "Sabbatical 2024" # defaults to author + favicon: "favicon.ico" # Adds a small icon next to the page title in a tab + showBlogLatest: true + mainSections: ["blog"] + showTaxonomyLinks: false + nBlogLatest: 7 + Paginate: 14 + blogLatestHeading: "Latest Dabblings" + footer: "This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License." + + social: + email: "pim+sabbatical@ipng.nl" + mastodon: "IPngNetworks" + twitter: "IPngNetworks" + linkedin: "pimvanpelt" + instagram: "IPngNetworks" + +taxonomies: + year: "year" + month: "month" + tags: "tags" + categories: "categories" + +permalinks: + blog: "/blog/:year/:month/:day/:slug"