mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
12 lines
250 B
Go
12 lines
250 B
Go
|
package controllers
|
||
|
|
||
|
import "github.com/kataras/iris/mvc"
|
||
|
|
||
|
type AboutController struct{ mvc.Controller }
|
||
|
|
||
|
func (c *AboutController) Get() {
|
||
|
c.Data["Title"] = "About"
|
||
|
c.Data["Message"] = "Your application description page."
|
||
|
c.Tmpl = "about.html"
|
||
|
}
|