diff --git a/src/config.d.sample b/src/config.d.sample new file mode 100644 index 0000000..366f0aa --- /dev/null +++ b/src/config.d.sample @@ -0,0 +1,15 @@ +const string url_root = "/"; + +const string site_title = "This is a Title"; +const string site_subtitle = "but this is a subtitle"; + +const bool nav_tree_vert = false; +const bool nav_tree_chev = true; +const bool page_container = true; + +string[string] handlers; + +void init_handlers() { + handlers["*.md"] = "contrib/Markdown.pl"; + handlers["changelog"] = "changelog.sh"; +}