diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-05-26 00:05:31 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-05-26 14:41:21 +0200 |
commit | 349a3d1ff36a436261b1b65b870f8f262f06584f (patch) | |
tree | 25c4d6933c49f818e520ce662ffa15e040877f4d /templates/helloworld.qtpl.go | |
parent | c06945c189c1d8ef3cedeb51e416ba0fec36368f (diff) | |
download | cerrado-349a3d1ff36a436261b1b65b870f8f262f06584f.tar.gz cerrado-349a3d1ff36a436261b1b65b870f8f262f06584f.tar.bz2 cerrado-349a3d1ff36a436261b1b65b870f8f262f06584f.zip |
feat: Add bare bones project list
Diffstat (limited to 'templates/helloworld.qtpl.go')
-rw-r--r-- | templates/helloworld.qtpl.go | 62 |
1 files changed, 30 insertions, 32 deletions
diff --git a/templates/helloworld.qtpl.go b/templates/helloworld.qtpl.go index a12455f..61c8f75 100644 --- a/templates/helloworld.qtpl.go +++ b/templates/helloworld.qtpl.go @@ -59,73 +59,71 @@ func (p *HelloPage) Title() string { func (p *HelloPage) StreamContent(qw422016 *qt422016.Writer) { //line helloworld.qtpl:9 qw422016.N().S(` -HelloWorld - `) -//line helloworld.qtpl:12 +//line helloworld.qtpl:10 qw422016.N().S(p.Body) -//line helloworld.qtpl:12 +//line helloworld.qtpl:10 qw422016.N().S(` `) -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 } -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 func (p *HelloPage) WriteContent(qq422016 qtio422016.Writer) { -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 qw422016 := qt422016.AcquireWriter(qq422016) -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 p.StreamContent(qw422016) -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 qt422016.ReleaseWriter(qw422016) -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 } -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 func (p *HelloPage) Content() string { -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 qb422016 := qt422016.AcquireByteBuffer() -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 p.WriteContent(qb422016) -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 qs422016 := string(qb422016.B) -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 qt422016.ReleaseByteBuffer(qb422016) -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 return qs422016 -//line helloworld.qtpl:13 +//line helloworld.qtpl:11 } -//line helloworld.qtpl:15 +//line helloworld.qtpl:13 func (p *HelloPage) StreamScript(qw422016 *qt422016.Writer) { -//line helloworld.qtpl:15 +//line helloworld.qtpl:13 qw422016.N().S(` `) -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 } -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 func (p *HelloPage) WriteScript(qq422016 qtio422016.Writer) { -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 qw422016 := qt422016.AcquireWriter(qq422016) -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 p.StreamScript(qw422016) -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 qt422016.ReleaseWriter(qw422016) -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 } -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 func (p *HelloPage) Script() string { -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 qb422016 := qt422016.AcquireByteBuffer() -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 p.WriteScript(qb422016) -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 qs422016 := string(qb422016.B) -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 qt422016.ReleaseByteBuffer(qb422016) -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 return qs422016 -//line helloworld.qtpl:16 +//line helloworld.qtpl:14 } |