aboutsummaryrefslogtreecommitdiff
path: root/config.toml
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2022-08-27 14:05:48 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2022-08-27 14:05:48 +0200
commit9f5454bda6299db43a4e9de5b3716471388b81d9 (patch)
tree1ceedf64a4517a372d70efc2b6f4bbd9478ce792 /config.toml
parente728c3a2cbd06d95cd1226d3b23473816bd0d67e (diff)
downloadmitjafelicijan.com-9f5454bda6299db43a4e9de5b3716471388b81d9.tar.gz
Move blog to Hugo
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml31
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 @@
1baseURL = 'https://mitjafelicijan.com/'
2languageCode = 'en-us'
3title = 'Mitja Felicijan'
4
5# Theme selction.
6theme = 'simple'
7
8# Makes url's have '.html' at the end.
9uglyurls = 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'