about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--cgit.css9
-rw-r--r--ui-shared.c4
2 files changed, 12 insertions, 1 deletions
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("<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>");
 }
-0400'>2019-09-08Set title User-AgentJune McEnroe 2019-09-07Add -x flag to titleJune McEnroe 2019-09-07Ignore SIGPIPE in relayJune McEnroe 2019-09-07Add A Memory Called EmpireJune McEnroe 2019-09-05Handle lack of Content-TypeJune McEnroe 2019-09-05Use CURLINFO_CONTENT_TYPEJune McEnroe 2019-09-05Decode entities in titlesJune McEnroe 2019-09-05Print title as soon as it's availableJune McEnroe 2019-09-05Use CURL_PREFIX to set flagsJune McEnroe 2019-09-05Add titleJune McEnroe 2019-09-04Add Avorter n'est pas tuerJune McEnroe 2019-08-29Unset executable on shell scriptsJune McEnroe 2019-08-29Add long-missing setopt to bin.7June McEnroe 2019-08-29Add editJune McEnroe