mirror of
https://github.com/kataras/iris.git
synced 2025-12-17 18:07:01 +00:00
32 lines
494 B
Go
32 lines
494 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"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")
|
|
if err := ctx.View("index", data); err != nil {
|
|
ctx.HTML(fmt.Sprintf("<h3>%s</h3>", err.Error()))
|
|
return
|
|
}
|
|
}
|