about summary refs log tree commit diff
path: root/ui-shared.c
diff options
context:
space:
mode:
authorLars Hjemli <larsh@slaptop.hjemli.net>2007-01-28 11:33:55 +0100
committerLars Hjemli <larsh@slaptop.hjemli.net>2007-01-28 11:33:55 +0100
commit8596cda71d04cd49cb983aee7968d14cc58c030d (patch)
tree6f8053d21fecd718d3493fe665240dc7892d44d2 /ui-shared.c
parentUnified install path (diff)
downloadcgit-magenta-8596cda71d04cd49cb983aee7968d14cc58c030d.tar.xz
Change global document layout
Use a document-wide table for the main layout

Signed-off-by: Lars Hjemli <larsh@slaptop.hjemli.net>
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c5
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
@@ -107,12 +107,13 @@ 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("<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>"); @@ -135,5 +136,5 @@ void cgit_print_pageheader(char *title, int show_search) html_txt(title); if (cgit_query_repo) html("</a>"); - html("</div>"); + html("</td></tr><tr><td id='content'>"); }