iris/_examples/view/parse-template/handlebars/main.go
Gerasimos (Makis) Maropoulos b77227a0f9
accesslog: NEW log broker and many more features
some fixes about context clone, fix response recorder concurrent access, fix reload views with only ParseTemplate and more
2020-09-09 14:43:26 +03:00

26 lines
494 B
Go

package main
import "github.com/kataras/iris/v12"
func main() {
e := iris.Handlebars(nil, ".html") // You can still use a file system though.
e.ParseTemplate("program.html", `<h1>{{greet Name}}</h1>`, iris.Map{
"greet": func(name string) string {
return "Hello, " + name + "!"
},
})
e.Reload(true)
app := iris.New()
app.RegisterView(e)
app.Get("/", index)
app.Listen(":8080")
}
func index(ctx iris.Context) {
ctx.View("program.html", iris.Map{
"Name": "Gerasimos",
})
}