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"
|
|
|
|
)
|
|
|
|
|
2014-02-15 01:14:22 +00:00
|
|
|
func Dashboard(r render.Render) {
|
|
|
|
r.HTML(200, "dashboard", map[string]interface{}{
|
|
|
|
"Title": "Dashboard",
|
|
|
|
})
|
2014-02-12 17:49:46 +00:00
|
|
|
}
|