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:
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