summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
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
@@ -104,18 +104,19 @@ void cgit_print_docstart(char *title, struct cacheitem *item)
104 html("</head>\n"); 104 html("</head>\n");
105 html("<body>\n"); 105 html("<body>\n");
106} 106}
107 107
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}
112 113
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);
118 htmlf("</a>"); 119 htmlf("</a>");
119 if (show_search) { 120 if (show_search) {
120 html("<form method='get' href='"); 121 html("<form method='get' href='");
121 html_attr(cgit_currurl()); 122 html_attr(cgit_currurl());
@@ -132,8 +133,8 @@ void cgit_print_pageheader(char *title, int show_search)
132 } 133 }
133 if (cgit_query_repo) 134 if (cgit_query_repo)
134 htmlf("<a href='%s'>", cgit_repourl(cgit_query_repo)); 135 htmlf("<a href='%s'>", cgit_repourl(cgit_query_repo));
135 html_txt(title); 136 html_txt(title);
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}