diff options
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' | ||
