blob: d82ca1c98904e31f12e80771a9c44664a105dc41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% code
type ErrorPage struct {
Err string
}
%}
{% func (p *ErrorPage) Title() %}Error{% endfunc %}
{% func (p *ErrorPage) Content() %}
{%s p.Err %}
{% endfunc %}
{% func (p *ErrorPage) Script() %}
{% endfunc %}
|