mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 08:57:32 -04:00
add m.NotFound handler
This commit is contained in:
parent
47493a0191
commit
bdd32f152d
@ -20,5 +20,12 @@ func Home(ctx *middleware.Context) {
|
||||
|
||||
func Help(ctx *middleware.Context) {
|
||||
ctx.Data["PageIsHelp"] = true
|
||||
ctx.Data["Title"] = "Help"
|
||||
ctx.HTML(200, "help")
|
||||
}
|
||||
|
||||
func NotFound(ctx *middleware.Context) {
|
||||
ctx.Data["PageIsNotFound"] = true
|
||||
ctx.Data["Title"] = 404
|
||||
ctx.Handle(404, "home.NotFound", nil)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user