1This is a base page template. All the other template pages implement this interface.
2
3{% import "strconv" %}
4
5{% interface
6Page {
7 Title()
8 Content()
9 Script()
10}
11
12%}
13
14{% code func FromUInttoString(u *uint) string {
15 if u != nil {
16 return strconv.FormatUint(uint64(*u), 10)
17 }
18 return ""
19 }
20%}
21
22
23Page prints a page implementing Page interface.
24{% func PageTemplate(p Page) %}
25<html lang="en">
26 <head>
27 <meta charset="utf-8">
28 <title>img | {%= p.Title() %}</title>
29 <link rel="stylesheet" href="/static/main.css">
30 <meta name="viewport" content="width=device-width, initial-scale=1" />
31 </head>
32 <body>
33 <div>
34 {%= p.Content() %}
35 </div>
36 </body>
37 {%= p.Script() %}
38</html>
39{% endfunc %}
40
41{% code type BasePage struct {} %}
42{% func (p *BasePage) Title() %}Empty{% endfunc %}
43{% func (p *BasePage) Body() %}HelloWorld{% endfunc %}
44{% func (p *BasePage) Script() %}{% endfunc %}