mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
12 lines
197 B
Go
12 lines
197 B
Go
|
package routes
|
||
|
|
||
|
import (
|
||
|
"github.com/kataras/iris"
|
||
|
)
|
||
|
|
||
|
// GetIndexHandler handles the GET: /
|
||
|
func GetIndexHandler(ctx iris.Context) {
|
||
|
ctx.ViewData("Title", "Index Page")
|
||
|
ctx.View("index.html")
|
||
|
}
|