Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMHSanaei <ho3ein.sanaei@gmail.com>2023-04-25 19:59:13 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2023-04-25 19:59:13 +0300
commitb5c553950111a7b5634fd46bdae6e5985ed498df (patch)
tree34a324185285776b683a5fdf5c5dd7c48aa24eb0 /web/controller/util.go
parent252afe47c0394ba9c8b6b7f3f0280695c056f01f (diff)
add hostname to page title
Co-Authored-By: Alireza Ahmadi <alireza7@gmail.com>
Diffstat (limited to 'web/controller/util.go')
-rw-r--r--web/controller/util.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/web/controller/util.go b/web/controller/util.go
index 706905ad..70549513 100644
--- a/web/controller/util.go
+++ b/web/controller/util.go
@@ -76,6 +76,7 @@ func html(c *gin.Context, name string, title string, data gin.H) {
data = gin.H{}
}
data["title"] = title
+ data["host"] = strings.Split(c.Request.Host, ":")[0]
data["request_uri"] = c.Request.RequestURI
data["base_path"] = c.GetString("base_path")
c.HTML(http.StatusOK, name, getContext(data))