This commit is contained in:
Eden Kirin
2023-10-26 13:25:10 +02:00
parent 45f6f19441
commit e92a56c393
8 changed files with 45 additions and 14 deletions

View File

@ -7,7 +7,7 @@ import (
)
func GetIndexPage(ctx iris.Context) {
if err := ctx.View("pages/index.jet"); err != nil {
if err := ctx.View("pages/index.html"); err != nil {
showError(ctx, err)
return
}