2018-05-26 21:49:48 +02:00
|
|
|
package main
|
|
|
|
|
2019-10-25 00:27:02 +02:00
|
|
|
import "github.com/kataras/iris/v12"
|
2018-05-26 21:49:48 +02:00
|
|
|
|
|
|
|
func main() {
|
|
|
|
app := iris.New()
|
|
|
|
|
|
|
|
tmpl := iris.Pug("./templates", ".pug")
|
|
|
|
tmpl.Reload(true) // reload templates on each request (development mode)
|
|
|
|
tmpl.AddFunc("greet", func(s string) string { // add your template func here.
|
|
|
|
return "Greetings " + s + "!"
|
|
|
|
})
|
|
|
|
|
|
|
|
app.RegisterView(tmpl)
|
|
|
|
|
|
|
|
app.Get("/", index)
|
|
|
|
|
|
|
|
// http://localhost:8080
|
2020-03-05 21:41:27 +01:00
|
|
|
app.Listen(":8080")
|
2018-05-26 21:49:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func index(ctx iris.Context) {
|
|
|
|
ctx.ViewData("pageTitle", "My Index Page")
|
|
|
|
ctx.ViewData("youAreUsingJade", true)
|
|
|
|
// Q: why need extension .pug?
|
|
|
|
// A: Because you can register more than one view engine per Iris application.
|
|
|
|
ctx.View("index.pug")
|
|
|
|
}
|