
Moved template paths' record to template module. Introduced templates directory parameter in web.toml. Changed web configuration names to make them shorter. More renames of text to note, where applicable.
15 lines
290 B
TOML
15 lines
290 B
TOML
[general]
|
|
url = "http://localhost:3666"
|
|
port = 3666
|
|
|
|
stylesheets = [ "style.css" ]
|
|
static_dir = "share/static"
|
|
|
|
[templates]
|
|
dir = "share/html_templates"
|
|
header = "header.mustache"
|
|
note = "note.mustache"
|
|
front = "frontpage.mustache"
|
|
list = "list.mustache"
|
|
item = "item.mustache"
|