mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
29 lines
590 B
Go
29 lines
590 B
Go
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.
|
|
if err := ctx.View("index", data); err != nil {
|
|
ctx.HTML("<h3>%s</h3>", err.Error())
|
|
return
|
|
}
|
|
}
|