From 07d6c92e8540a5e975642a2604e8d569b3ae8cb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Bastian?= Date: Sat, 11 May 2019 19:23:15 +0200 Subject: [PATCH] Use yaml for site configuration --- config.toml | 3 --- config.yaml | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 3 deletions(-) delete mode 100644 config.toml create mode 100644 config.yaml diff --git a/config.toml b/config.toml deleted file mode 100644 index 0642f01..0000000 --- a/config.toml +++ /dev/null @@ -1,3 +0,0 @@ -baseURL = "https://nomnom.tobast.fr/" -languageCode = "fr-fr" -title = "Omnomnom." diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..d08a777 --- /dev/null +++ b/config.yaml @@ -0,0 +1,29 @@ +baseURL: "https://nomnom.tobast.fr/" +languageCode: "fr-fr" +title: "Omnomnom." +disableHugoGeneratorInject: true + +params: + sourceURL: "https://git.tobast.fr/tobast/nomnom" + siteLicenseURL: "https://www.gnu.org/licenses/gpl-3.0.en.html" + siteLicenseName: "GNU GPLv3" + +taxonomies: + category: categories + tag: tags + veganness: veganness + season: season + +privacy: + disqus: + disable: true + googleAnalytics: + disable: true + instagram: + disable: true + twitter: + disable: true + vimeo: + disable: true + youtube: + disable: true