2014-02-12 12:49:46 -05: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 14:54:09 -05:00
|
|
|
import (
|
|
|
|
"github.com/martini-contrib/render"
|
|
|
|
)
|
|
|
|
|
2014-02-14 20:14:22 -05:00
|
|
|
func Dashboard(r render.Render) {
|
|
|
|
r.HTML(200, "dashboard", map[string]interface{}{
|
|
|
|
"Title": "Dashboard",
|
|
|
|
})
|
2014-02-12 12:49:46 -05:00
|
|
|
}
|