mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
29 lines
560 B
Go
29 lines
560 B
Go
|
package main
|
||
|
|
||
|
import "github.com/kataras/iris/v12"
|
||
|
|
||
|
func main() {
|
||
|
e := iris.Amber(nil, ".amber") // You can still use a file system though.
|
||
|
e.AddFunc("greet", func(name string) string {
|
||
|
return "Hello, " + name + "!"
|
||
|
})
|
||
|
err := e.ParseTemplate("program.amber", []byte(`h1 #{ greet(Name) }`))
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
app := iris.New()
|
||
|
app.RegisterView(e)
|
||
|
app.Get("/", index)
|
||
|
|
||
|
app.Listen(":8080")
|
||
|
}
|
||
|
|
||
|
func index(ctx iris.Context) {
|
||
|
ctx.View("program.amber", iris.Map{
|
||
|
"Name": "Gerasimos",
|
||
|
// Or per template:
|
||
|
// "greet": func(....)
|
||
|
})
|
||
|
}
|