diff --git a/cgit.css b/cgit.css
index 3579598..382964a 100644
--- a/cgit.css
+++ b/cgit.css
@@ -13,6 +13,14 @@ h2 {
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 @@ div#header {
border: solid 1px #aaa;
vertical-align: middle;
}
-
div#header img#logo {
float: right;
}
diff --git a/ui-shared.c b/ui-shared.c
index 1a6c127..9ec4be8 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -104,6 +104,10 @@ void cgit_print_pageheader(char *title)
htmlf("", cgit_logo_link);
htmlf("
\n", cgit_logo);
htmlf("");
+ if (cgit_query_repo)
+ htmlf("", cgit_repourl(cgit_query_repo));
html_txt(title);
+ if (cgit_query_repo)
+ html("");
html("");
}