mirror of
https://github.com/kataras/iris.git
synced 2026-01-09 13:05:56 +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)
|
||||
}
|
||||
2
_examples/view/layout/ace/views/index.ace
Normal file
2
_examples/view/layout/ace/views/index.ace
Normal file
@@ -0,0 +1,2 @@
|
||||
h1 Index Body
|
||||
h3 Message: {{.Message}}
|
||||
8
_examples/view/layout/ace/views/layouts/main.ace
Normal file
8
_examples/view/layout/ace/views/layouts/main.ace
Normal file
@@ -0,0 +1,8 @@
|
||||
= doctype html
|
||||
html
|
||||
head
|
||||
title {{.Title}}
|
||||
body
|
||||
{{ yield }}
|
||||
footer
|
||||
= include partials/footer.ace .
|
||||
2
_examples/view/layout/ace/views/partials/footer.ace
Normal file
2
_examples/view/layout/ace/views/partials/footer.ace
Normal file
@@ -0,0 +1,2 @@
|
||||
h3 Footer Partial
|
||||
h4 {{.FooterText}}
|
||||
25
_examples/view/layout/amber/main.go
Normal file
25
_examples/view/layout/amber/main.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package main
|
||||
|
||||
import "github.com/kataras/iris/v12"
|
||||
|
||||
func main() {
|
||||
app := iris.New()
|
||||
app.RegisterView(iris.Amber("./views", ".amber"))
|
||||
|
||||
app.Get("/", index)
|
||||
|
||||
app.Listen(":8080")
|
||||
}
|
||||
|
||||
func index(ctx iris.Context) {
|
||||
data := iris.Map{
|
||||
"Title": "Page Title",
|
||||
"FooterText": "Footer contents",
|
||||
"Message": "Main contents",
|
||||
}
|
||||
|
||||
// On Amber 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)
|
||||
}
|
||||
5
_examples/view/layout/amber/views/index.amber
Normal file
5
_examples/view/layout/amber/views/index.amber
Normal file
@@ -0,0 +1,5 @@
|
||||
extends layouts/main.amber
|
||||
|
||||
block content
|
||||
h1 Index Body
|
||||
h3 Message: #{Message}
|
||||
8
_examples/view/layout/amber/views/layouts/main.amber
Normal file
8
_examples/view/layout/amber/views/layouts/main.amber
Normal file
@@ -0,0 +1,8 @@
|
||||
doctype html
|
||||
html
|
||||
head
|
||||
title #{Title}
|
||||
body
|
||||
block content
|
||||
footer
|
||||
#{render("partials/footer.amber", $)}
|
||||
2
_examples/view/layout/amber/views/partials/footer.amber
Normal file
2
_examples/view/layout/amber/views/partials/footer.amber
Normal file
@@ -0,0 +1,2 @@
|
||||
h3 Footer Partial
|
||||
h4 #{FooterText}
|
||||
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>
|
||||
25
_examples/view/layout/django/main.go
Normal file
25
_examples/view/layout/django/main.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package main
|
||||
|
||||
import "github.com/kataras/iris/v12"
|
||||
|
||||
func main() {
|
||||
app := iris.New()
|
||||
app.RegisterView(iris.Django("./views", ".html"))
|
||||
|
||||
app.Get("/", index)
|
||||
|
||||
app.Listen(":8080")
|
||||
}
|
||||
|
||||
func index(ctx iris.Context) {
|
||||
data := iris.Map{
|
||||
"Title": "Page Title",
|
||||
"FooterText": "Footer contents",
|
||||
"Message": "Main contents",
|
||||
}
|
||||
|
||||
// On Django 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)
|
||||
}
|
||||
6
_examples/view/layout/django/views/index.html
Normal file
6
_examples/view/layout/django/views/index.html
Normal file
@@ -0,0 +1,6 @@
|
||||
{% extends "layouts/main.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Index Body</h1>
|
||||
<h3>Message: {{Message}}</h3>
|
||||
{% endblock %}
|
||||
10
_examples/view/layout/django/views/layouts/main.html
Normal file
10
_examples/view/layout/django/views/layouts/main.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>{{Title}}</title>
|
||||
</head>
|
||||
<body>
|
||||
{% block content %} {% endblock %}
|
||||
|
||||
<footer>{% include "../partials/footer.html" %}</footer>
|
||||
</body>
|
||||
</html>
|
||||
2
_examples/view/layout/django/views/partials/footer.html
Normal file
2
_examples/view/layout/django/views/partials/footer.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<h3>Footer Partial</h3>
|
||||
<h4>{{FooterText}}</h4>
|
||||
24
_examples/view/layout/handlebars/main.go
Normal file
24
_examples/view/layout/handlebars/main.go
Normal file
@@ -0,0 +1,24 @@
|
||||
package main
|
||||
|
||||
import "github.com/kataras/iris/v12"
|
||||
|
||||
func main() {
|
||||
app := iris.New()
|
||||
|
||||
app.RegisterView(iris.Handlebars("./views", ".html"))
|
||||
|
||||
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)
|
||||
}
|
||||
2
_examples/view/layout/handlebars/views/index.html
Normal file
2
_examples/view/layout/handlebars/views/index.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<h1>Index Body</h1>
|
||||
<h3>Message: {{Message}} </h3>
|
||||
10
_examples/view/layout/handlebars/views/layouts/main.html
Normal file
10
_examples/view/layout/handlebars/views/layouts/main.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>{{Title}}</title>
|
||||
</head>
|
||||
<body>
|
||||
{{ yield }}
|
||||
|
||||
<footer>{{ render "partials/footer.html" .}}</footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,2 @@
|
||||
<h3>Footer Partial</h3>
|
||||
<h4>{{FooterText}}</h4>
|
||||
24
_examples/view/layout/html/main.go
Normal file
24
_examples/view/layout/html/main.go
Normal file
@@ -0,0 +1,24 @@
|
||||
package main
|
||||
|
||||
import "github.com/kataras/iris/v12"
|
||||
|
||||
func main() {
|
||||
app := iris.New()
|
||||
|
||||
app.RegisterView(iris.HTML("./views", ".html"))
|
||||
|
||||
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)
|
||||
}
|
||||
2
_examples/view/layout/html/views/index.html
Normal file
2
_examples/view/layout/html/views/index.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<h1>Index Body</h1>
|
||||
<h3>Message: {{.Message}}</h3>
|
||||
11
_examples/view/layout/html/views/layouts/main.html
Normal file
11
_examples/view/layout/html/views/layouts/main.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>{{.Title}}</title>
|
||||
</head>
|
||||
<body>
|
||||
{{ yield }}
|
||||
<footer>
|
||||
{{ render "partials/footer.html" }}
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
2
_examples/view/layout/html/views/partials/footer.html
Normal file
2
_examples/view/layout/html/views/partials/footer.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<h3>Footer Partial</h3>
|
||||
<h4>{{.FooterText}}</h4>
|
||||
26
_examples/view/layout/jet/main.go
Normal file
26
_examples/view/layout/jet/main.go
Normal file
@@ -0,0 +1,26 @@
|
||||
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)
|
||||
}
|
||||
5
_examples/view/layout/jet/views/index.jet
Normal file
5
_examples/view/layout/jet/views/index.jet
Normal file
@@ -0,0 +1,5 @@
|
||||
{{ extends "../layouts/main.jet" }}
|
||||
{{ block documentBody() }}
|
||||
<h1>Index Body</h1>
|
||||
<h3>Message: {{.Message}}</h3>
|
||||
{{ end }}
|
||||
9
_examples/view/layout/jet/views/layouts/main.jet
Normal file
9
_examples/view/layout/jet/views/layouts/main.jet
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>{{.Title}}</title>
|
||||
</head>
|
||||
<body>
|
||||
{{ yield documentBody() }}
|
||||
<footer>{{ include "../partials/footer.jet" . }}</footer>
|
||||
</body>
|
||||
</html>
|
||||
2
_examples/view/layout/jet/views/partials/footer.jet
Normal file
2
_examples/view/layout/jet/views/partials/footer.jet
Normal file
@@ -0,0 +1,2 @@
|
||||
<h3>Footer Partial</h3>
|
||||
<h4>{{.FooterText}}</h4>
|
||||
25
_examples/view/layout/pug/main.go
Normal file
25
_examples/view/layout/pug/main.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package main
|
||||
|
||||
import "github.com/kataras/iris/v12"
|
||||
|
||||
func main() {
|
||||
app := iris.New()
|
||||
app.RegisterView(iris.Pug("./views", ".pug"))
|
||||
|
||||
app.Get("/", index)
|
||||
|
||||
app.Listen(":8080")
|
||||
}
|
||||
|
||||
func index(ctx iris.Context) {
|
||||
data := iris.Map{
|
||||
"Title": "Page Title",
|
||||
"FooterText": "Footer contents",
|
||||
"Message": "Main contents",
|
||||
}
|
||||
|
||||
// On Pug 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)
|
||||
}
|
||||
5
_examples/view/layout/pug/views/index.pug
Normal file
5
_examples/view/layout/pug/views/index.pug
Normal file
@@ -0,0 +1,5 @@
|
||||
extends layouts/main.pug
|
||||
|
||||
block content
|
||||
h1 Index Body
|
||||
h3 Message: {{.Message}}
|
||||
8
_examples/view/layout/pug/views/layouts/main.pug
Normal file
8
_examples/view/layout/pug/views/layouts/main.pug
Normal file
@@ -0,0 +1,8 @@
|
||||
doctype html
|
||||
html
|
||||
head
|
||||
title {{.Title}}
|
||||
body
|
||||
block content
|
||||
footer
|
||||
include ../partials/footer.pug
|
||||
2
_examples/view/layout/pug/views/partials/footer.pug
Normal file
2
_examples/view/layout/pug/views/partials/footer.pug
Normal file
@@ -0,0 +1,2 @@
|
||||
h3 Footer Partial
|
||||
h4 {{.FooterText}}
|
||||
Reference in New Issue
Block a user