cerrado @ 4534dffb865eb1a50bfbc291a5c3798183081caf

 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        <link rel="icon" href="data:,">
29        <title>cerrado | {%= p.Title() %}</title> 
30        <link rel="stylesheet" href="/static/main.css">
31        <meta name="viewport" content="width=device-width, initial-scale=1" />
32    </head>
33    <body>
34        <nav class="navbar navbar-expand bg-body-tertiary">
35          <div class="container-fluid">
36            <div class="collapse navbar-collapse">
37              <div class="navbar-nav">
38                <a class="nav-link" href="/git">git</a>
39                <a class="nav-link" href="/list">list</a>
40              </div>
41            </div>
42          </div>
43        </nav>
44        <div class="container">
45            {%= p.Content() %}
46        </div>
47    </body>
48    {%= p.Script() %}
49</html>
50{% endfunc %}
51
52{% code type BasePage struct {} %}
53{% func (p *BasePage) Title() %}Empty{% endfunc %}
54{% func (p *BasePage) Body() %}HelloWorld{% endfunc %}
55{% func (p *BasePage) Script() %}{% endfunc %}