blob: c43bbfdf906e81797b9bbbc00e8dab843f960be0 (
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
29
30
|
{% import "context" %}
{% interface
GitItemBase {
Nav(name, ref string)
GitContent(name, ref string)
}
%}
{% code
type GitItemPage struct {
Name string
Ref string
GitItemBase
}
%}
{% func (p *GitItemPage) Title(ctx context.Context) %}Git | {%s p.Name %}{% endfunc %}
{% func (p *GitItemPage) Navbar(ctx context.Context) %}{%= Navbar(ctx, Git) %}{% endfunc %}
{% func (p *GitItemPage) Content(ctx context.Context) %}
{%= p.Nav(p.Name, p.Ref) %}
<div class="container">
{%= p.GitContent(p.Name, p.Ref) %}
</div>
{% endfunc %}
{% func (p *GitItemPage) Script(ctx context.Context) %}
{% endfunc %}
|