mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
feb1d264c0
Former-commit-id: b17fb21d8c1d5a73f9f9170f49ae0527870377a1
15 lines
405 B
Go
15 lines
405 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/kataras/iris/_examples/http_responsewriter/quicktemplate/templates"
|
|
|
|
"github.com/kataras/iris/context"
|
|
)
|
|
|
|
// ExecuteTemplate renders a "tmpl" partial template to the `context#ResponseWriter`.
|
|
func ExecuteTemplate(ctx context.Context, tmpl templates.Partial) {
|
|
ctx.Gzip(true)
|
|
ctx.ContentType("text/html")
|
|
templates.WriteTemplate(ctx.ResponseWriter(), tmpl)
|
|
}
|