mirror of
https://github.com/kataras/iris.git
synced 2026-01-09 21:15:56 +00:00
Add View Engine Benchmarks: https://github.com/kataras/iris/tree/master/_benchmarks/view
This commit is contained in:
25
_benchmarks/view/jet/main.go
Normal file
25
_benchmarks/view/jet/main.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package main
|
||||
|
||||
import "github.com/kataras/iris/v12"
|
||||
|
||||
func main() {
|
||||
app := iris.New()
|
||||
app.RegisterView(iris.Jet("./views", ".jet"))
|
||||
|
||||
app.Get("/", index)
|
||||
|
||||
app.Listen(":8080")
|
||||
}
|
||||
|
||||
func index(ctx iris.Context) {
|
||||
data := iris.Map{
|
||||
"Title": "Page Title",
|
||||
"FooterText": "Footer contents",
|
||||
"Message": "Main contents",
|
||||
}
|
||||
|
||||
// On Jet this is ignored: ctx.ViewLayout("layouts/main")
|
||||
// Layouts are only rendered from inside the index page itself
|
||||
// using the "extends" keyword.
|
||||
ctx.View("index", data)
|
||||
}
|
||||
1
_benchmarks/view/jet/views/index.jet
Normal file
1
_benchmarks/view/jet/views/index.jet
Normal file
@@ -0,0 +1 @@
|
||||
{{ extends "../layouts/main.jet" }}{{ block documentBody() }}<h1>Index Body</h1><h3>Message: {{.Message}}</h3>{{ end }}
|
||||
1
_benchmarks/view/jet/views/layouts/main.jet
Normal file
1
_benchmarks/view/jet/views/layouts/main.jet
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html><html><head><title>{{.Title}}</title></head><body>{{ yield documentBody() }}<footer>{{ include "../partials/footer.jet" . }}</footer></body></html>
|
||||
1
_benchmarks/view/jet/views/partials/footer.jet
Normal file
1
_benchmarks/view/jet/views/partials/footer.jet
Normal file
@@ -0,0 +1 @@
|
||||
<h3>Footer Partial</h3><h4>{{.FooterText}}</h4>
|
||||
Reference in New Issue
Block a user