2014-02-12 23:19:46 +05:30
|
|
|
// 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-13 01:24:09 +05:30
|
|
|
import (
|
|
|
|
"github.com/martini-contrib/render"
|
|
|
|
)
|
|
|
|
|
2014-02-15 06:44:22 +05:30
|
|
|
func Dashboard(r render.Render) {
|
|
|
|
r.HTML(200, "dashboard", map[string]interface{}{
|
|
|
|
"Title": "Dashboard",
|
|
|
|
})
|
2014-02-12 23:19:46 +05:30
|
|
|
}
|