mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
feb1d264c0
Former-commit-id: b17fb21d8c1d5a73f9f9170f49ae0527870377a1
16 lines
369 B
Go
16 lines
369 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/kataras/iris/_examples/http_responsewriter/quicktemplate/templates"
|
|
|
|
"github.com/kataras/iris/context"
|
|
)
|
|
|
|
// Index renders our ../templates/index.qtpl file using the compiled ../templates/index.qtpl.go file.
|
|
func Index(ctx context.Context) {
|
|
tmpl := &templates.Index{}
|
|
|
|
// render the template
|
|
ExecuteTemplate(ctx, tmpl)
|
|
}
|