1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2025-09-15 18:56:59 +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
commit a80d8d96fa
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")
}