1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-23 02:38:35 +00:00

Merge branch 'dev' of github.com:gogits/gogs into dev

This commit is contained in:
Unknown
2014-06-08 04:45:38 -04:00
4 changed files with 194 additions and 1 deletions

11
routers/org/org.go Normal file
View File

@@ -0,0 +1,11 @@
package org
import (
"github.com/go-martini/martini"
"github.com/gogits/gogs/modules/middleware"
)
func Organization(ctx *middleware.Context, params martini.Params) {
ctx.Data["Title"] = "Organization Name" + params["org"]
ctx.HTML(200, "org/org")
}