fixed stomping of sample config.d

This commit is contained in:
Jacob Parker 2012-02-24 16:32:28 -05:00
parent d7e8c1f824
commit 3cd017ce68
1 changed files with 15 additions and 0 deletions

15
src/config.d.sample Normal file
View File

@ -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";
}