X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/74620f12e4f7e91cb0a0b4ca731e07272d1b65f6..66091f934a2d064ae55095cdc5ae008b43ea60fe:/ui-repolist.c
diff --git a/ui-repolist.c b/ui-repolist.c
index 1fe7059..9f12b18 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -17,7 +17,7 @@ void cgit_print_repolist(struct cacheitem *item)
chdir(cgit_root);
cgit_print_docstart(cgit_root_title, item);
- cgit_print_pageheader(cgit_root_title);
+ cgit_print_pageheader(cgit_root_title, 0);
if (!(d = opendir("."))) {
cgit_print_error(fmt("Unable to scan repository directory: %s",
@@ -27,8 +27,11 @@ void cgit_print_repolist(struct cacheitem *item)
}
html("
Repositories
\n");
- html("");
- html("| Name | Description | Owner |
\n");
+ html("");
+ html(""
+ "| Name | "
+ "Description | "
+ "Owner |
\n");
while ((de = readdir(d)) != NULL) {
if (de->d_name[0] == '.')
continue;