mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
244a59e055
Former-commit-id: ed84f99c89f43fe5e980a8e6d0ee22c186f0e1b9
33 lines
740 B
Go
33 lines
740 B
Go
package main
|
|
|
|
import (
|
|
"gopkg.in/kataras/iris.v6"
|
|
"gopkg.in/kataras/iris.v6/adaptors/httprouter"
|
|
"gopkg.in/kataras/iris.v6/adaptors/view"
|
|
)
|
|
|
|
type mypage struct {
|
|
Title string
|
|
Message string
|
|
}
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
app.Adapt(iris.DevLogger())
|
|
app.Adapt(httprouter.New())
|
|
|
|
tmpl := view.HTML("./templates", ".html")
|
|
tmpl.Layout("layout.html")
|
|
|
|
app.Adapt(tmpl)
|
|
|
|
app.Get("/", func(ctx *iris.Context) {
|
|
ctx.Render("mypage.html", mypage{"My Page title", "Hello world!"}, iris.Map{"gzip": true})
|
|
// Note that: you can pass "layout" : "otherLayout.html" to bypass the config's Layout property
|
|
// or iris.NoLayout to disable layout on this render action.
|
|
// third is an optional parameter
|
|
})
|
|
|
|
app.Listen(":8080")
|
|
}
|