1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00
Files
kararas_iris/_examples/view/parse-template/django/main.go
Gerasimos (Makis) Maropoulos 630c67ea6d update code for go version 1.24
2025-03-30 00:41:54 +02:00

35 lines
633 B
Go

package main
import (
"fmt"
"github.com/kataras/iris/v12"
)
func main() {
e := iris.Django(nil, ".html") // You can still use a file system though.
e.AddFunc("greet", func(name string) string {
return "Hello, " + name + "!"
})
err := e.ParseTemplate("program.html", []byte(`<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) {
if err := ctx.View("program.html", iris.Map{
"Name": "Gerasimos",
}); err != nil {
ctx.HTML(fmt.Sprintf("<h3>%s</h3>", err.Error()))
return
}
}