diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-05-19 21:04:33 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-05-19 21:04:33 +0100 |
commit | 42d4b89ae0b095be8507a70c9920ee5921868fff (patch) | |
tree | 26089cd2524713443b20da330704d5b432f8917e /config.toml |
updating
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..14163ce --- /dev/null +++ b/config.toml @@ -0,0 +1,38 @@ +baseURL = "https://yulqen.org" +title = "Yulqen" +theme = "etch" +languageCode = "en-gb" +enableInlineShortcodes = true +pygmentsCodeFences = true +pygmentsUseClasses = true + +[params] + description = "An intentionally quiet and unassuming (and empty) blog" + copyright = "Copyright © 2021 Yulqen" + dark = "auto" + highlight = true + +[menu] + [[menu.main]] + identifier = "blog" + name = "blog" + title = "blog" + url = "/" + weight = 10 + + [[menu.main]] + identifier = "about" + name = "about" + title = "about" + url = "/about/" + weight = 20 + +[permalinks] + posts = "/:title/" + +[markup.goldmark.renderer] + # Allow HTML in Markdown + unsafe = true + + [markup.tableOfContents] + ordered = true |