www-new/src/config.d

19 lines
529 B
D

const string url_root = "/~j3parker/pub/csc/";
const string site_title = "CSC";
const string site_subtitle = "UW Computer Science Club";
const bool nav_tree_vert = false;
const bool nav_tree_chev = false;
const bool page_container = true;
string[string] handlers;
void init_handlers() {
handlers["*.md"] = "contrib/Markdown.pl";
handlers["changelog"] = "changelog.sh";
handlers["About/Members/"] = "members.py";
handlers["About/Members/?*"] = "member_info.py";
handlers["About/Executive/"] = "exec_positions.py";
}