blob: d6957820865ed335415da36d5fc0d240039d0350 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{% interface
GitItemBase {
Nav(name, ref string)
GitContent()
}
%}
{% code
type GitItemPage struct {
Name string
Ref string
GitItemBase
}
%}
{% func (p *GitItemPage) Title() %}Git | {%s p.Name %}{% endfunc %}
{% func (p *GitItemPage) Navbar() %}{%= Navbar(Git) %}{% endfunc %}
{% func (p *GitItemPage) Content() %}
{%= p.Nav(p.Name, p.Ref) %}
<div class="container">
{%= p.GitContent() %}
</div>
{% endfunc %}
{% func (p *GitItemPage) Script() %}
{% endfunc %}
|