unstomped the logo and the headerbar

This commit is contained in:
Jacob Parker 2012-02-22 19:36:39 -05:00
parent 852eca73df
commit 075fc075c2
1 changed files with 11 additions and 1 deletions

View File

@ -65,14 +65,24 @@ void do_header() {
html_push("<div id=\"header\">"); html_push("<div id=\"header\">");
html_push("<div class=\"superHeader\">"); html_push("<div class=\"superHeader\">");
html_push("<div class=\"left\">");
html("<a href=\"http://wiki.csclub.uwaterloo.ca/\">wiki</a>");
html("<a href=\"http://git.csclub.uwaterloo.ca/\">git</a>");
html("<a href=\"http://mirror.csclub.uwaterloo.ca/\">mirror</a>");
html("<a href=\"http://csclub.uwaterloo.ca/stats\">stats</a>");
html("<a href=\"http://mail.csclub.uwaterloo.ca/\">mail</a>");
html_pop("</div>");
html_push("<div class=\"right\">"); html_push("<div class=\"right\">");
html("<a href=\"" ~ url_root ~ "changelog\">changelog</a>"); html("<a href=\"" ~ url_root ~ "changelog\">changelog</a>");
html_pop("</div>"); html_pop("</div>");
html_pop("</div>"); html_pop("</div>");
html_push("<div class=\"midHeader\">"); html_push("<div class=\"midHeader\">");
html_push("<h1 class=\"headerTitle\">"); html_push("<h1 class=\"headerTitle\">");
html("<a href=\"" ~ url_root ~ "\">" ~ site_title ~ " <span id=\"headerSubTitle\">" ~ site_subtitle ~ "</span></a>"); html("<a href=\"" ~ url_root ~ "\"><img src=\"" ~ url_root ~ "pub/style/logo.png\" id=\"logo\"> <span id=\"headerSubTitle\">" ~ site_subtitle ~ "</span></a>");
html_pop("</h1>"); html_pop("</h1>");
html_pop("</div>"); html_pop("</div>");