Pārlūkot izejas kodu

add hostname to page title

Co-Authored-By: Alireza Ahmadi <[email protected]>
MHSanaei 1 gadu atpakaļ
vecāks
revīzija
b5c5539501
2 mainītis faili ar 2 papildinājumiem un 1 dzēšanām
  1. 1 0
      web/controller/util.go
  2. 1 1
      web/html/common/head.html

+ 1 - 0
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))

+ 1 - 1
web/html/common/head.html

@@ -13,6 +13,6 @@
             display: none;
         }
     </style>
-    <title>{{ i18n .title}}</title>
+    <title>{{ .host }}-{{ i18n .title}}</title>
 </head>
 {{end}}