all repos — cgit @ 0de2055b75735986ff04aed8f534ecf06248e5e1

a hyperfast web frontend for git written in c

Make repo header a link to summary page

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Lars Hjemli hjemli@gmail.com
Sat, 16 Dec 2006 00:49:37 +0100
commit

0de2055b75735986ff04aed8f534ecf06248e5e1

parent

148fb9622c6a96021e572d1a372e38896506031f

2 files changed, 12 insertions(+), 1 deletions(-)

jump to
M cgit.csscgit.css

@@ -13,6 +13,14 @@ font-weight: bold;

margin-bottom: 0.1em; } +a { + color: blue; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} table.list { border: solid 1px black;

@@ -46,7 +54,6 @@ font-weight: bold;

border: solid 1px #aaa; vertical-align: middle; } - div#header img#logo { float: right; }
M ui-shared.cui-shared.c

@@ -104,6 +104,10 @@ html("<div id='header'>");

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>"); }