1{% code
2type HelloPage struct {
3 Body string
4}
5%}
6
7{% func (p *HelloPage) Title() %}Hello{% endfunc %}
8
9{% func (p *HelloPage) Content() %}
10HelloWorld
11
12{%s= p.Body %}
13{% endfunc %}
14
15{% func (p *HelloPage) Script() %}
16{% endfunc %}