aboutsummaryrefslogtreecommitdiffstats
path: root/routers/org/org.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-06-08 04:45:38 -0400
committerUnknown <joe2010xtmf@163.com>2014-06-08 04:45:38 -0400
commita80d8d96fa592fc357b0e3f94ccd114d71852557 (patch)
tree934afaa19b666b2ae5c6e962d2cbb8f24a24bc01 /routers/org/org.go
parent302c863cda651130286838309d3d897cace93534 (diff)
parent4fcbf553aa9b451bc461e09a98711966668e1889 (diff)
downloadgitea-a80d8d96fa592fc357b0e3f94ccd114d71852557.tar.gz
gitea-a80d8d96fa592fc357b0e3f94ccd114d71852557.zip
Merge branch 'dev' of github.com:gogits/gogs into dev
Diffstat (limited to 'routers/org/org.go')
-rw-r--r--routers/org/org.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/routers/org/org.go b/routers/org/org.go
new file mode 100644
index 0000000000..1c02e77332
--- /dev/null
+++ b/routers/org/org.go
@@ -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")
+}