2017-10-01 16:29:25 +03:00
|
|
|
package routes
|
|
|
|
|
|
|
|
import (
|
2019-10-25 01:27:02 +03:00
|
|
|
"github.com/kataras/iris/v12"
|
2017-10-01 16:29:25 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetIndexHandler handles the GET: /
|
|
|
|
func GetIndexHandler(ctx iris.Context) {
|
|
|
|
ctx.ViewData("Title", "Index Page")
|
|
|
|
ctx.View("index.html")
|
|
|
|
}
|