-rw-r--r-- | ui-shared.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ui-shared.c b/ui-shared.c index bebd3e0..6300516 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -102,22 +102,23 @@ void cgit_print_docstart(char *title, struct cacheitem *item) html_attr(cgit_css); html("'/>\n"); html("</head>\n"); html("<body>\n"); } void cgit_print_docend() { + html("</td></tr></table>"); html("</body>\n</html>\n"); } void cgit_print_pageheader(char *title, int show_search) { - html("<div id='header'>"); + html("<table id='layout'><tr><td id='header'>"); htmlf("<a href='%s'>", cgit_logo_link); htmlf("<img id='logo' src='%s'/>\n", cgit_logo); htmlf("</a>"); if (show_search) { html("<form method='get' href='"); html_attr(cgit_currurl()); html("'>"); if (cgit_query_head) @@ -130,10 +131,10 @@ void cgit_print_pageheader(char *title, int show_search) html_attr(cgit_query_search); html("'/></form>"); } if (cgit_query_repo) htmlf("<a href='%s'>", cgit_repourl(cgit_query_repo)); html_txt(title); if (cgit_query_repo) html("</a>"); - html("</div>"); + html("</td></tr><tr><td id='content'>"); } |