1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-21 20:07:04 +00:00

update view benchmarks and remove ace template parser

This commit is contained in:
Gerasimos (Makis) Maropoulos
2023-03-17 12:38:07 +02:00
parent bd1a1486f4
commit ec2d9d016e
33 changed files with 45 additions and 885 deletions

View File

@@ -1,32 +0,0 @@
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)
}
e.Reload(true)
app := iris.New()
app.RegisterView(e)
app.Get("/", index)
app.Listen(":8080")
}
func index(ctx iris.Context) {
if err := ctx.View("program.amber", iris.Map{
"Name": "Gerasimos",
// Or per template:
// "greet": func(....)
}); err != nil {
ctx.HTML("<h3>%s</h3>", err.Error())
return
}
}