dweb 0.3: can wrap the site in a container now.

This commit is contained in:
Jacob Parker 2012-02-21 14:52:58 -05:00
parent 45c0e50ab5
commit 543c9133e2
3 changed files with 14 additions and 3 deletions

View File

@ -12,6 +12,13 @@ body {
padding: 0; padding: 0;
} }
#container {
position: relative;
margin: 20px auto;
width: 900px;
text-align: left;
}
/* # Header # */ /* # Header # */
.superHeader { .superHeader {
color: white; color: white;
@ -220,6 +227,7 @@ li ul {
background-color: transparent; background-color: transparent;
text-align: justify; text-align: justify;
line-height: 1.5em; line-height: 1.5em;
word-wrap: break-word;
} }
.main-copy-side-bar { .main-copy-side-bar {

View File

@ -5,5 +5,6 @@ const string site_root = dweb_root ~ "srv/";
const string site_title = "This is a Title"; const string site_title = "This is a Title";
const string site_subtitle = "but this is a subtitle"; const string site_subtitle = "but this is a subtitle";
const bool nav_tree_vert = false; const bool nav_tree_vert = true;
const bool nav_tree_chev = false; const bool nav_tree_chev = true;
const bool page_container = false;

View File

@ -187,11 +187,13 @@ void main(string[] args) {
html("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">"); html("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">");
html_pop("</head>\n"); html_pop("</head>\n");
html_push("<body>"); html_push("<body" ~ (page_container? " style=\"text-align: center\"" : "")~ ">");
if (page_container) html_push("<div id=\"container\">");
do_header(); do_header();
do_nav_tree(path); do_nav_tree(path);
do_content(path); do_content(path);
do_footer(); do_footer();
if (page_container) html_push("</div>");
html_pop("</body>\n"); html_pop("</body>\n");
html_pop("</html>"); html_pop("</html>");