mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
b77227a0f9
some fixes about context clone, fix response recorder concurrent access, fix reload views with only ParseTemplate and more
34 lines
636 B
Go
34 lines
636 B
Go
package main
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
"github.com/kataras/iris/v12"
|
|
"github.com/kataras/iris/v12/view"
|
|
)
|
|
|
|
func main() {
|
|
e := iris.Jet(nil, ".jet") // You can still use a file system though.
|
|
e.AddFunc("greet", func(args view.JetArguments) reflect.Value {
|
|
msg := "Hello, " + args.Get(0).String() + "!"
|
|
return reflect.ValueOf(msg)
|
|
})
|
|
err := e.ParseTemplate("program.jet", `<h1>{{greet(.Name)}}</h1>`)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
e.Reload(true)
|
|
|
|
app := iris.New()
|
|
app.RegisterView(e)
|
|
app.Get("/", index)
|
|
|
|
app.Listen(":8080")
|
|
}
|
|
|
|
func index(ctx iris.Context) {
|
|
ctx.View("program.jet", iris.Map{
|
|
"Name": "Gerasimos",
|
|
})
|
|
}
|