1
0
mirror of https://github.com/beego/bee.git synced 2025-07-27 15:45:31 +00:00

fix: change site url on default controller

This commit is contained in:
Sangseng Lee
2022-07-29 10:36:30 +09:00
committed by GitHub
parent ef570ffb7b
commit d78f259fdf

View File

@@ -151,7 +151,7 @@ type MainController struct {
} }
func (c *MainController) Get() { func (c *MainController) Get() {
c.Data["Website"] = "beego.me" c.Data["Website"] = "beego.vip"
c.Data["Email"] = "astaxie@gmail.com" c.Data["Email"] = "astaxie@gmail.com"
c.TplName = "index.tpl" c.TplName = "index.tpl"
} }