summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
authorLars Hjemli <larsh@slaptop.hjemli.net>2007-01-28 10:33:55 (UTC)
committer Lars Hjemli <larsh@slaptop.hjemli.net>2007-01-28 10:33:55 (UTC)
commit8596cda71d04cd49cb983aee7968d14cc58c030d (patch) (unidiff)
tree6f8053d21fecd718d3493fe665240dc7892d44d2 /ui-shared.c
parent4a9dea5c0104471324f01663420685e45fe3b480 (diff)
downloadcgit-8596cda71d04cd49cb983aee7968d14cc58c030d.zip
cgit-8596cda71d04cd49cb983aee7968d14cc58c030d.tar.gz
cgit-8596cda71d04cd49cb983aee7968d14cc58c030d.tar.bz2
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') (more/less context) (ignore whitespace changes)
-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
@@ -108,4 +108,5 @@ void cgit_print_docstart(char *title, struct cacheitem *item)
108void cgit_print_docend() 108void cgit_print_docend()
109{ 109{
110 html("</td></tr></table>");
110 html("</body>\n</html>\n"); 111 html("</body>\n</html>\n");
111} 112}
@@ -113,5 +114,5 @@ void cgit_print_docend()
113void cgit_print_pageheader(char *title, int show_search) 114void cgit_print_pageheader(char *title, int show_search)
114{ 115{
115 html("<div id='header'>"); 116 html("<table id='layout'><tr><td id='header'>");
116 htmlf("<a href='%s'>", cgit_logo_link); 117 htmlf("<a href='%s'>", cgit_logo_link);
117 htmlf("<img id='logo' src='%s'/>\n", cgit_logo); 118 htmlf("<img id='logo' src='%s'/>\n", cgit_logo);
@@ -136,4 +137,4 @@ void cgit_print_pageheader(char *title, int show_search)
136 if (cgit_query_repo) 137 if (cgit_query_repo)
137 html("</a>"); 138 html("</a>");
138 html("</div>"); 139 html("</td></tr><tr><td id='content'>");
139} 140}