mirror of
https://github.com/kataras/iris.git
synced 2026-01-04 10:47:20 +00:00
Add View Engine Benchmarks: https://github.com/kataras/iris/tree/master/_benchmarks/view
This commit is contained in:
26
_examples/view/layout/blocks/main.go
Normal file
26
_examples/view/layout/blocks/main.go
Normal file
@@ -0,0 +1,26 @@
|
||||
package main
|
||||
|
||||
import "github.com/kataras/iris/v12"
|
||||
|
||||
func main() {
|
||||
app := iris.New()
|
||||
app.RegisterView(iris.Blocks("./views", ".html"))
|
||||
// Note, in Blocks engine, layouts
|
||||
// are used by their base names, the
|
||||
// blocks.LayoutDir(layoutDir) defaults to "./layouts".
|
||||
|
||||
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("main")
|
||||
ctx.View("index", data)
|
||||
}
|
||||
2
_examples/view/layout/blocks/views/index.html
Normal file
2
_examples/view/layout/blocks/views/index.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<h1>Index Body</h1>
|
||||
<h3>Message: {{.Message}}</h3>
|
||||
11
_examples/view/layout/blocks/views/layouts/main.html
Normal file
11
_examples/view/layout/blocks/views/layouts/main.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>{{.Title}}</title>
|
||||
</head>
|
||||
<body>
|
||||
{{ template "content" . }}
|
||||
<footer>
|
||||
{{ partial "partials/footer" .}}
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
2
_examples/view/layout/blocks/views/partials/footer.html
Normal file
2
_examples/view/layout/blocks/views/partials/footer.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<h3>Footer Partial</h3>
|
||||
<h4>{{.FooterText}}</h4>
|
||||
Reference in New Issue
Block a user