mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
9e6691e5ce
Former-commit-id: 10b4952308c62b81eb7270b9e0b29ad0bb645bc5
18 lines
312 B
Go
18 lines
312 B
Go
package controllers
|
|
|
|
import "github.com/kataras/iris/mvc"
|
|
|
|
type AboutController struct{}
|
|
|
|
var aboutView = mvc.View{
|
|
Name: "about.html",
|
|
Data: map[string]interface{}{
|
|
"Title": "About",
|
|
"Message": "Your application description page..",
|
|
},
|
|
}
|
|
|
|
func (c *AboutController) Get() mvc.View {
|
|
return aboutView
|
|
}
|