mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
12 lines
242 B
Go
12 lines
242 B
Go
|
package controllers
|
||
|
|
||
|
import "github.com/kataras/iris/mvc"
|
||
|
|
||
|
type ContactController struct{ mvc.Controller }
|
||
|
|
||
|
func (c *ContactController) Get() {
|
||
|
c.Data["Title"] = "Contact"
|
||
|
c.Data["Message"] = "Your contact page."
|
||
|
c.Tmpl = "contact.html"
|
||
|
}
|