From 9f5454bda6299db43a4e9de5b3716471388b81d9 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Sat, 27 Aug 2022 14:05:48 +0200 Subject: Move blog to Hugo --- config.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 config.toml (limited to 'config.toml') diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..7cb9aa2 --- /dev/null +++ b/config.toml @@ -0,0 +1,31 @@ +baseURL = 'https://mitjafelicijan.com/' +languageCode = 'en-us' +title = 'Mitja Felicijan' + +# Theme selction. +theme = 'simple' + +# Makes url's have '.html' at the end. +uglyurls = true + +[params] + description = 'You do not learn by relaxing. You learn by violently assaulting your problem until it surrenders its mysteries to you.' + +[permalinks] + posts = ':title' + # pages = ':title' + +[author] + name = 'Mitja Felicijan' + +[markup] + [markup.tableOfContents] + endLevel = 3 + ordered = false + startLevel = 2 + + [markup.goldmark.renderer] + unsafe = true + + [markup.highlight] + style = 'github' -- cgit v1.2.3