You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
362 B

  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package routers
  5. import "github.com/gogits/gogs/modules/middleware"
  6. func Install(ctx *middleware.Context){
  7. ctx.Data["PageIsInstall"] = true
  8. ctx.Data["Title"] = "Install"
  9. ctx.HTML(200,"install")
  10. }