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

34 lines
653 B
Go

package main
import (
"fmt"
"github.com/kataras/iris/v12"
)
func main() {
app := iris.New()
// By default Ace minifies the template before render,
// using the SetIndent method, we make it to match
// the rest of the template results.
app.RegisterView(iris.Ace("./views", ".ace").SetIndent(" "))
app.Get("/", index)
app.Listen(":8080")
}
func index(ctx iris.Context) {
data := iris.Map{
"Title": "Page Title",
"FooterText": "Footer contents",
"Message": "Main contents",
}
ctx.ViewLayout("layouts/main")
if err := ctx.View("index", data); err != nil {
ctx.HTML(fmt.Sprintf("<h3>%s</h3>", err.Error()))
return
}
}