Mirror fix

This commit is contained in:
Unknown 2014-03-16 03:41:22 -04:00
parent c3e0554fd7
commit 8de9517862
7 changed files with 41 additions and 6 deletions

View file

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