Files
builder-prototype/config.toml
Nathan Schneider 521c782c42 Initial commit
2025-03-23 21:44:39 -06:00

42 lines
881 B
TOML

baseURL = '/'
languageCode = 'en-us'
title = 'Community Dispute Protocol'
theme = 'dispute-protocol-theme'
# Enable relative URLs for easier deployment in different environments
relativeURLs = true
canonifyURLs = false
# Output configuration
[outputs]
home = ["HTML", "RSS"]
# Configure static resources
[params]
# Custom CSS
customCSS = ["css/main.css"]
# Custom JS
customJS = ["js/builder.js", "js/data/modules.js", "js/data/templates.js"]
# Site description
description = "A tool for communities to develop customized dispute resolution protocols"
# Footer text
footer = "Powered by Hugo and hosted on GitLab"
# Menu configuration
[menu]
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "Builder"
url = "/builder/"
weight = 2
[[menu.main]]
name = "About"
url = "/about/"
weight = 3