2014-02-12 18:49:46 +01:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package routers
|
|
|
|
|
2014-02-12 20:54:09 +01:00
|
|
|
import (
|
2014-03-15 14:17:16 +01:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-03-07 22:05:18 +01:00
|
|
|
"github.com/gogits/gogs/routers/user"
|
2014-02-12 20:54:09 +01:00
|
|
|
)
|
|
|
|
|
2014-03-15 15:34:33 +01:00
|
|
|
func Home(ctx *middleware.Context) {
|
|
|
|
if ctx.IsSigned {
|
2014-03-15 14:17:16 +01:00
|
|
|
user.Dashboard(ctx)
|
2014-03-06 14:33:17 +01:00
|
|
|
return
|
|
|
|
}
|
2014-03-15 15:34:33 +01:00
|
|
|
ctx.Data["PageIsHome"] = true
|
|
|
|
ctx.Render.HTML(200, "home", ctx.Data)
|
2014-02-12 18:49:46 +01:00
|
|
|
}
|
2014-03-16 08:41:22 +01:00
|
|
|
|
2014-03-18 23:31:54 +01:00
|
|
|
func Help(ctx *middleware.Context) {
|
|
|
|
ctx.Data["PageIsHelp"] = true
|
|
|
|
ctx.Render.HTML(200, "help", ctx.Data)
|
2014-03-16 08:41:22 +01:00
|
|
|
}
|