aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoni Sawicki <tenox@google.com>2022-06-25 15:35:58 -0700
committerAntoni Sawicki <tenox@google.com>2022-06-25 15:35:58 -0700
commitb07da0c0650186a4d552b1562002e218cd7feab1 (patch)
tree18c2353c3591a1814ce589fa07d5017e6bbbe2c3
parent406cc12fdc295ad4b1b447572124dae667362bc0 (diff)
downloadwfm-b07da0c0650186a4d552b1562002e218cd7feab1.tar.gz
add colon between site name and directory
-rw-r--r--dir.go2
-rw-r--r--web.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/dir.go b/dir.go
index b659b84..4e54720 100644
--- a/dir.go
+++ b/dir.go
@@ -133,7 +133,7 @@ func toolbars(w http.ResponseWriter, uDir, user string, sl []string, i map[strin
w.Write([]byte(`
<TABLE WIDTH="100%" BGCOLOR="#FFFFFF" CELLPADDING="0" CELLSPACING="0" BORDER="0" STYLE="height:28px;"><TR>
<TD NOWRAP WIDTH="100%" BGCOLOR="#0072c6" VALIGN="MIDDLE" ALIGN="LEFT" STYLE="color:#FFFFFF; font-weight:bold;">
- <FONT COLOR="#FFFFFF">&nbsp;` + *siteName + `&nbsp;` + eDir + `</FONT>
+ <FONT COLOR="#FFFFFF">&nbsp;` + *siteName + `&nbsp;:&nbsp;` + eDir + `</FONT>
</TD>
<TD NOWRAP BGCOLOR="#F1F1F1" VALIGN="MIDDLE" ALIGN="RIGHT" STYLE="color:#000000; white-space:nowrap">
<A HREF="` + *wfmPfx + `?fn=logout">` + i["tid"] + user + `</A>
diff --git a/web.go b/web.go
index 3602d73..56ced5f 100644
--- a/web.go
+++ b/web.go
@@ -39,7 +39,7 @@ func header(w http.ResponseWriter, uDir, sort, extraCSS string) {
<META NAME="viewport" CONTENT="width=device-width">
<LINK REL="icon" TYPE="image/x-icon" HREF="/favicon.ico">
<LINK REL="shortcut icon" HREF="/favicon.ico?">
-<TITLE>` + *siteName + ` ` + eDir + `</TITLE>
+<TITLE>` + *siteName + ` : ` + eDir + `</TITLE>
<STYLE TYPE="text/css"><!--
A:link {text-decoration: none; color:#0000CE; }
A:visited {text-decoration: none; color:#0000CE; }