diff options
Diffstat (limited to 'config/web')
-rw-r--r-- | config/web/config.toml | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/config/web/config.toml b/config/web/config.toml index f34177b..b79063e 100644 --- a/config/web/config.toml +++ b/config/web/config.toml @@ -1,7 +1,27 @@ -disableKinds = ['taxonomy', 'term', 'RSS', 'section'] -enableRobotsTXT = true +disableKinds = ['RSS', 'section'] publishDir = "public/website" +enableRobotsTXT = true + +[menu] + [[menu.main]] + name = "About Page" + url = "/about/" + weight = 1 + [[menu.main]] + name = "Promoted Links" + url = "/promoted/" + weight = 2 + [[menu.main]] + name = "Glossary" + url = "/glossary/" + weight = 3 + [[menu.main]] + name = "Atom Feed" + url = "/atom.xml" + weight = 4 [outputs] home = ["HTML", "Atom"] page = ["HTML"] + taxonomy = ["HTML", "Atom"] + term = ["HTML", "Atom"] |