blob: 44e160474b48574d3c93773fa3780a17529aa480 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{% import "github.com/go-git/go-git/v5/plumbing" %}
{% import "github.com/go-git/go-git/v5/plumbing/object" %}
{% import "git.gabrielgio.me/cerrado/pkg/git" %}
{% code
type GitItemSummaryPage struct {
Tags []*git.TagReference
Branches []*plumbing.Reference
Commits []*object.Commit
}
%}
{% func (g *GitItemSummaryPage) Nav(name, ref string) %}{%= GitItemNav(name, ref, Summary) %}{% endfunc %}
{% func (g *GitItemSummaryPage) GitContent(name, ref string) %}
<div class="row">
<div class="col-md-8">
{%= ListTags(name, g.Tags) %}
</div>
<div class="col-md-4">
<div class="event-list">
{% for _, b := range g.Branches %}
<div class="row event">
<div class="col-4">
{%s b.Name().Short() %}
</div>
<div class="col-8">
<div class="float-end">
<a href="/{%s name %}/archive/{%s b.Name().Short() %}.tar.gz">tar.gz</a>
<a href="/{%s name %}/tree/{%s b.Name().Short() %}/">tree</a>
<a href="/{%s name %}/log/{%s b.Name().Short() %}/">log</a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<div class="row">
<div class="event-list">
{% for _, c := range g.Commits %}
{%= Commit(name, c) %}
{% endfor %}
</div>
</div>
{% endfunc %}
|