mirror of
https://github.com/kataras/iris.git
synced 2026-01-22 03:15:58 +00:00
New: i18n pluralization and variables support and more...
fixes: #1649, #1648, #1641, #1650 relative to: #1597
This commit is contained in:
@@ -22,6 +22,7 @@ func main() {
|
||||
// the .Name inside the ./templates/hi.html.
|
||||
ctx.ViewData("Name", "iris")
|
||||
// render the template with the file name relative to the './templates'.
|
||||
// file extension is OPTIONAL.
|
||||
ctx.View("hi.html")
|
||||
})
|
||||
|
||||
|
||||
@@ -12,14 +12,14 @@ func main() {
|
||||
app.RegisterView(tmpl)
|
||||
|
||||
app.Get("/", func(ctx iris.Context) {
|
||||
ctx.View("index.ace", iris.Map{
|
||||
ctx.View("index", iris.Map{
|
||||
"Title": "Title of The Page",
|
||||
})
|
||||
})
|
||||
|
||||
app.Get("/layout", func(ctx iris.Context) {
|
||||
ctx.ViewLayout("layouts/main.ace") // layout for that response.
|
||||
ctx.View("index.ace", iris.Map{
|
||||
ctx.ViewLayout("layouts/main") // layout for that response.
|
||||
ctx.View("index", iris.Map{ // file extension is optional.
|
||||
"Title": "Title of the main Page",
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user