From 27ab370dc419b3bdc06801eb39bd71de6c0c0b3c Mon Sep 17 00:00:00 2001
From: Pim van Pelt <pim@ipng.ch>
Date: Tue, 13 Aug 2024 02:00:30 +0200
Subject: [PATCH] Move to hugo.yaml config format

---
 config.toml | 38 --------------------------------------
 hugo.yaml   | 37 +++++++++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+), 38 deletions(-)
 delete mode 100644 config.toml
 create mode 100644 hugo.yaml

diff --git a/config.toml b/config.toml
deleted file mode 100644
index ad27830..0000000
--- a/config.toml
+++ /dev/null
@@ -1,38 +0,0 @@
-baseURL = 'https://ipng.ch/'
-languageCode = 'en-us'
-title = "IPng Networks"
-theme = 'hugo-theme-ipng'
-
-mainSections = ["articles"]
-# disqusShortname = "example"
-paginate = 4
-
-[params]
-  author = "IPng Networks GmbH"
-  siteHeading = "IPng Networks"
-  favicon = "favicon.ico" # Adds a small icon next to the page title in a tab
-  showBlogLatest = false
-  mainSections = ["articles"]
-  showTaxonomyLinks = false
-  nBlogLatest = 14 # number of blog post om the home page
-  Paginate = 30
-  blogLatestHeading = "Latest Dabblings"
-  footer = "Copyright 2021- IPng Networks GmbH, all rights reserved"
-
-  [params.social]
-    email = "info+www@ipng.ch"
-    mastodon = "@IPngNetworks"
-    twitter = "IPngNetworks"
-    linkedin = "pimvanpelt"
-    github = "pimvanpelt"
-    instagram = "IPngNetworks"
-    rss = true
-
-[taxonomies]
-  year = "year"
-  month = "month"
-  tags = "tags"
-  categories = "categories"
-
-[permalinks]
-  articles = "/s/articles/:year/:month/:day/:slug"
diff --git a/hugo.yaml b/hugo.yaml
new file mode 100644
index 0000000..66e8ece
--- /dev/null
+++ b/hugo.yaml
@@ -0,0 +1,37 @@
+baseURL: 'https://ipng.ch/'
+languageCode: 'en-us'
+title: "IPng Networks"
+theme: 'hugo-theme-ipng'
+
+mainSections: ["articles"]
+paginate: 4
+
+params:
+  author: "IPng Networks GmbH"
+  siteHeading: "IPng Networks"
+  favicon: "favicon.ico"
+  showBlogLatest: false
+  mainSections: ["articles"]
+  showTaxonomyLinks: false
+  nBlogLatest: 14 # number of blog post om the home page
+  Paginate: 30
+  blogLatestHeading: "Latest Dabblings"
+  footer: "Copyright 2021- IPng Networks GmbH, all rights reserved"
+
+  social:
+    email: "info+www@ipng.ch"
+    mastodon: "@IPngNetworks"
+    twitter: "IPngNetworks"
+    linkedin: "pimvanpelt"
+    github: "pimvanpelt"
+    instagram: "IPngNetworks"
+    rss: true
+
+taxonomies:
+  year: "year"
+  month: "month"
+  tags: "tags"
+  categories: "categories"
+
+permalinks:
+  articles: "/s/articles/:year/:month/:day/:slug"