From 3cd017ce6866e4f6a202e21bf270d1ccbdcb8877 Mon Sep 17 00:00:00 2001 From: Jacob Parker Date: Fri, 24 Feb 2012 16:32:28 -0500 Subject: [PATCH] fixed stomping of sample config.d --- src/config.d.sample | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/config.d.sample 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"; +}