From 451dcac52b45506564922ce41f4657543ba46fe7 Mon Sep 17 00:00:00 2001 From: Amolith Date: Mon, 11 Jan 2021 12:00:59 -0500 Subject: [PATCH] move toml config to yml --- config.toml | 3 --- config.yml | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 3 deletions(-) delete mode 100644 config.toml create mode 100644 config.yml diff --git a/config.toml b/config.toml deleted file mode 100644 index 40828de..0000000 --- a/config.toml +++ /dev/null @@ -1,3 +0,0 @@ -baseURL = "https://secluded.site" -languageCode = "en-us" -title = "Secluded.Site" diff --git a/config.yml b/config.yml new file mode 100644 index 0000000..808e320 --- /dev/null +++ b/config.yml @@ -0,0 +1,48 @@ +baseURL: https://new.secluded.site +languageCode: en-us +title: Secluded.Site +theme: secluded +relativeURLs: true +permalinks: + posts: "/:title/" +params: + author: Amolith + description: Blog of a pseudonymous netizen + contact: + fediverse: https://nixnet.social/@amolith + email: amolith@secluded.site + + # Visit http://gnuterrypratchett.com for explanation + # List names as an array + clacks: + - Lloyd Barlowe + - Trabajo Taco + +markup: + highlight: + anchorLineNos: true + codeFences: true + lineNos: true + lineNumbersInTable: false + noClasses: true + style: algol_nu + tabWidth: 4 + +menu: + main: + - identifier: home + name: Home + url: / + weight: 100 + - identifier: posts + name: Posts + url: /posts + weight: 110 + - identifier: pipes + name: Pipes + url: /pipes + weight: 120 + - identifier: library + name: Library + url: /library + weight: 130