mirror of
https://github.com/kataras/iris.git
synced 2025-12-22 20:37:05 +00:00
Add View Engine Benchmarks: https://github.com/kataras/iris/tree/master/_benchmarks/view
This commit is contained in:
26
_examples/view/layout/ace/main.go
Normal file
26
_examples/view/layout/ace/main.go
Normal file
@@ -0,0 +1,26 @@
|
||||
package main
|
||||
|
||||
import "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")
|
||||
ctx.View("index", data)
|
||||
}
|
||||
Reference in New Issue
Block a user