Diffstat (limited to 'ui-shared.c')
| -rw-r--r-- | ui-shared.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ui-shared.c b/ui-shared.c index 6300516..bebd3e0 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -107,13 +107,12 @@ void cgit_print_docstart(char *title, struct cacheitem *item) void cgit_print_docend() { - html("</td></tr></table>"); html("</body>\n</html>\n"); } void cgit_print_pageheader(char *title, int show_search) { - html("<table id='layout'><tr><td id='header'>"); + html("<div id='header'>"); htmlf("<a href='%s'>", cgit_logo_link); htmlf("<img id='logo' src='%s'/>\n", cgit_logo); htmlf("</a>"); @@ -136,5 +135,5 @@ void cgit_print_pageheader(char *title, int show_search) html_txt(title); if (cgit_query_repo) html("</a>"); - html("</td></tr><tr><td id='content'>"); + html("</div>"); } |