diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-07-18 08:57:48 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-07-18 08:57:48 +0100 |
commit | 65547c56d0b81371cadb7bf799b4ab863b5f0a4e (patch) | |
tree | 1f642ee0afb3792aa59aac53bcd445ddde9ccb1e /config.toml | |
parent | f43d1ec014e1b15a88492b3f1f2d1bdbaab7b529 (diff) |
taxonomies amongst other stuff
Diffstat (limited to '')
-rw-r--r-- | config.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config.toml b/config.toml index 9b382b6..ae51356 100644 --- a/config.toml +++ b/config.toml @@ -12,6 +12,7 @@ pygmentsUseClasses = true dark = "off" highlight = true custom_css = ["css/style.css"] + mainSections = ['blog', 'about'] [menu] [[menu.main]] @@ -28,6 +29,20 @@ pygmentsUseClasses = true url = "/about/" weight = 20 + [[menu.main]] + identifier = "tags" + name = "tags" + title = "Tags" + url = "/tags/" + weight = 20 + + [[menu.main]] + identifier = "categories" + name = "categories" + title = "Categories" + url = "/categories/" + weight = 20 + [permalinks] posts = "/:title/" |