2014-02-12 17:49:46 +00: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 19:54:09 +00:00
|
|
|
import (
|
|
|
|
"github.com/martini-contrib/render"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Home(r render.Render) {
|
|
|
|
r.HTML(200, "home", map[string]interface{}{})
|
2014-02-12 17:49:46 +00:00
|
|
|
}
|