mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
ed45c77be5
Former-commit-id: ed635ee95de7160cde11eaabc0c1dcb0e460a620
73 lines
1.2 KiB
Go
73 lines
1.2 KiB
Go
// This file is automatically generated by qtc from "index.qtpl".
|
|
// See https://github.com/valyala/quicktemplate for details.
|
|
|
|
// Index template, implements the Partial's methods.
|
|
//
|
|
|
|
//line index.qtpl:3
|
|
|
|
package templates
|
|
|
|
//line index.qtpl:3
|
|
|
|
import (
|
|
qtio422016 "io"
|
|
|
|
qt422016 "github.com/valyala/quicktemplate"
|
|
)
|
|
|
|
//line index.qtpl:3
|
|
|
|
var (
|
|
_ = qtio422016.Copy
|
|
_ = qt422016.AcquireByteBuffer
|
|
)
|
|
|
|
//line index.qtpl:4
|
|
|
|
type Index struct{}
|
|
|
|
//line index.qtpl:7
|
|
|
|
func (i *Index) StreamBody(qw422016 *qt422016.Writer) {
|
|
//line index.qtpl:7
|
|
qw422016.N().S(`
|
|
<h1>Index Page</h1>
|
|
<div>
|
|
This is our index page's body.
|
|
</div>
|
|
`)
|
|
//line index.qtpl:12
|
|
|
|
}
|
|
|
|
//line index.qtpl:12
|
|
|
|
func (i *Index) WriteBody(qq422016 qtio422016.Writer) {
|
|
//line index.qtpl:12
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
|
//line index.qtpl:12
|
|
i.StreamBody(qw422016)
|
|
//line index.qtpl:12
|
|
qt422016.ReleaseWriter(qw422016)
|
|
//line index.qtpl:12
|
|
|
|
}
|
|
|
|
//line index.qtpl:12
|
|
|
|
func (i *Index) Body() string {
|
|
//line index.qtpl:12
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
|
//line index.qtpl:12
|
|
i.WriteBody(qb422016)
|
|
//line index.qtpl:12
|
|
qs422016 := string(qb422016.B)
|
|
//line index.qtpl:12
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
|
//line index.qtpl:12
|
|
return qs422016
|
|
//line index.qtpl:12
|
|
|
|
}
|