1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Mirror fix

This commit is contained in:
Unknown
2014-03-18 18:31:54 -04:00
parent 58147bef20
commit fbd252c1cf
18 changed files with 133 additions and 83 deletions

View File

@@ -18,6 +18,7 @@ func Home(ctx *middleware.Context) {
ctx.Render.HTML(200, "home", ctx.Data)
}
func Help(ctx *middleware.Context) string {
return "This is help page"
func Help(ctx *middleware.Context) {
ctx.Data["PageIsHelp"] = true
ctx.Render.HTML(200, "help", ctx.Data)
}