Diffstat (limited to 'ui-summary.c')
| -rw-r--r-- | ui-summary.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/ui-summary.c b/ui-summary.c index 5c1fc33..5799773 100644 --- a/ui-summary.c +++ b/ui-summary.c @@ -153,7 +153,7 @@ static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1, hashcpy(fileid, sha1); } if (!header) { - html("<table id='downloads'>"); + html("<table>"); html("<tr><th>Downloads</th></tr>"); header = 1; } @@ -193,18 +193,16 @@ static void cgit_print_archives() void cgit_print_summary() { - html("<div id='summary'>"); - cgit_print_archives(); + html("<table class='list nowrap'>"); + html("<tr class='nohover'><td id='summary' colspan='3'>"); html("<h2>"); html_txt(cgit_repo->name); html(" - "); html_txt(cgit_repo->desc); html("</h2>"); - if (cgit_repo->readme) - html_include(cgit_repo->readme); - html("</div>"); - - html("<table class='list nowrap'>"); + html("</td><td id='archivelist'>"); + cgit_print_archives(); + html("</td></tr>"); cgit_print_branches(); html("<tr class='nohover'><td colspan='4'> </td></tr>"); cgit_print_tags(); |