-rw-r--r-- | ui-shared.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c index 8a804c2..83758f7 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -507,13 +507,16 @@ void cgit_print_pageheader(struct cgit_context *ctx) | |||
507 | html("<tr><td class='sub'"); | 507 | html("<tr><td class='sub'"); |
508 | if (ctx->repo) { | 508 | if (ctx->repo) { |
509 | html(" colspan='2'>"); | 509 | html(" colspan='2'>"); |
510 | html_txt(ctx->repo->desc); | 510 | html_txt(ctx->repo->desc); |
511 | } else { | 511 | } else { |
512 | html(">"); | 512 | html(">"); |
513 | html_txt("a fast webinterface for the git dscm"); | 513 | if (ctx->cfg.root_desc) |
514 | html_txt(ctx->cfg.root_desc); | ||
515 | else if (ctx->cfg.index_info) | ||
516 | html_include(ctx->cfg.index_info); | ||
514 | } | 517 | } |
515 | html("</td></tr></table>\n"); | 518 | html("</td></tr></table>\n"); |
516 | 519 | ||
517 | html("<table class='tabs'><tr><td>\n"); | 520 | html("<table class='tabs'><tr><td>\n"); |
518 | if (ctx->repo) { | 521 | if (ctx->repo) { |
519 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), | 522 | reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), |