-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 @@ -109,2 +109,3 @@ void cgit_print_docend() { + html("</td></tr></table>"); html("</body>\n</html>\n"); @@ -114,3 +115,3 @@ 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); @@ -137,3 +138,3 @@ void cgit_print_pageheader(char *title, int show_search) html("</a>"); - html("</div>"); + html("</td></tr><tr><td id='content'>"); } |