From ae2e46e53f1c4b43ff08dcf4f87d4b578ebcd830 Mon Sep 17 00:00:00 2001 From: Vrifox Date: Mon, 14 Sep 2020 16:53:58 +0200 Subject: [PATCH] config rewritten json > yaml --- config.json | 34 ---------------------------------- config.yaml | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 34 deletions(-) delete mode 100644 config.json create mode 100644 config.yaml diff --git a/config.json b/config.json deleted file mode 100644 index 407405a..0000000 --- a/config.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "baseURL": "https://vrifox.cc/vrifox.cc_hugo/", - "languageCode": "en-us", - "title": "Have a nice day.", - "enableRobotsTXT": true, - - "menu": { - "main": [ - { - "identifier": "blog", - "name": "Blog", - "title": "blog", - "url": "/blog", - "weight": 2 - }, - { - "identifier": "projects", - "name": "Projects", - "title": "projects", - "url": "/projects", - "weight": 3 - } - ], - "links": [ - { - "identifier": "mastodon", - "name": "Mastodon", - "title": "mastodon", - "url": "https://social.anoxinon.de/@vrifox", - "weight": 4 - } - ] - } -} diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..a4e43e6 --- /dev/null +++ b/config.yaml @@ -0,0 +1,22 @@ +baseURL: https://vrifox.cc/vrifox.cc_hugo/ +languageCode: en-us +title: have a nice day +enableRobotsTXT: true +menu: + main: + - identifier: blog + name: Blog + title: blog + url: /blog + weight: 2 + - identifier: projects + name: Projects + title: projects + url: /projects + weight: 3 + links: + - identifier: mastodon + name: Mastodon + title: mastodon + url: https://social.anoxinon.de/@vrifox + weight: 4