summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRussell Morris <rmorris@rkmorris.us>2020-04-25 06:45:15 -0500
committerJo-Philipp Wich <jo@mein.io>2020-06-16 17:09:19 +0200
commit27fc7a8b4e30d96228fe169e0266bd43564d5eb3 (patch)
tree24b229113d475857991b7ec0d437a5603edc25ea
parent5f54ad1b9c156a89f5c05a09106a784745da9943 (diff)
luci-theme-bootstrap: update href for Bootstrap "brand"
In the Material theme, clicking on the logo takes you to the status page. This seems logical, and is very helpful. But in Bootstrap, it doesn't do anything, so just pulling the same href from Material to Bootstrap, so the link works in Bootstrap as well. Signed-off-by: Russell Morris <rmorris@rkmorris.us> [adjust commit subject, squash commits] Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rw-r--r--themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm b/themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm
index 89aa33815..999c868e3 100644
--- a/themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm
+++ b/themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm
@@ -41,7 +41,7 @@
<header>
<div class="fill">
<div class="container">
- <a class="brand" href="#"><%=boardinfo.hostname or "?"%></a>
+ <a class="brand" href="/"><%=boardinfo.hostname or "?"%></a>
<ul class="nav" id="topmenu" style="display:none"></ul>
<div id="indicators" class="pull-right"></div>
</div>