mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 01:03:39 +01:00
12 lines
256 B
Go
12 lines
256 B
Go
|
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")
|
||
|
}
|