Make repo header a link to summary page

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
Lars Hjemli 2006-12-16 00:49:37 +01:00
parent 148fb9622c
commit 0de2055b75
2 changed files with 12 additions and 1 deletions

View file

@ -104,6 +104,10 @@ void cgit_print_pageheader(char *title)
htmlf("<a href='%s'>", cgit_logo_link);
htmlf("<img id='logo' src='%s'/>\n", cgit_logo);
htmlf("</a>");
if (cgit_query_repo)
htmlf("<a href='%s'>", cgit_repourl(cgit_query_repo));
html_txt(title);
if (cgit_query_repo)
html("</a>");
html("</div>");
}