diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2022-08-27 14:05:48 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2022-08-27 14:05:48 +0200 |
| commit | 9f5454bda6299db43a4e9de5b3716471388b81d9 (patch) | |
| tree | 1ceedf64a4517a372d70efc2b6f4bbd9478ce792 /config.toml | |
| parent | e728c3a2cbd06d95cd1226d3b23473816bd0d67e (diff) | |
| download | mitjafelicijan.com-9f5454bda6299db43a4e9de5b3716471388b81d9.tar.gz | |
Move blog to Hugo
Diffstat (limited to 'config.toml')
| -rw-r--r-- | config.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..7cb9aa2 --- /dev/null +++ b/config.toml | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | baseURL = 'https://mitjafelicijan.com/' | ||
| 2 | languageCode = 'en-us' | ||
| 3 | title = 'Mitja Felicijan' | ||
| 4 | |||
| 5 | # Theme selction. | ||
| 6 | theme = 'simple' | ||
| 7 | |||
| 8 | # Makes url's have '.html' at the end. | ||
| 9 | uglyurls = true | ||
| 10 | |||
| 11 | [params] | ||
| 12 | description = 'You do not learn by relaxing. You learn by violently assaulting your problem until it surrenders its mysteries to you.' | ||
| 13 | |||
| 14 | [permalinks] | ||
| 15 | posts = ':title' | ||
| 16 | # pages = ':title' | ||
| 17 | |||
| 18 | [author] | ||
| 19 | name = 'Mitja Felicijan' | ||
| 20 | |||
| 21 | [markup] | ||
| 22 | [markup.tableOfContents] | ||
| 23 | endLevel = 3 | ||
| 24 | ordered = false | ||
| 25 | startLevel = 2 | ||
| 26 | |||
| 27 | [markup.goldmark.renderer] | ||
| 28 | unsafe = true | ||
| 29 | |||
| 30 | [markup.highlight] | ||
| 31 | style = 'github' | ||
