aboutsummaryrefslogtreecommitdiff
path: root/templates/gititemsummary.qtpl
blob: f39a6131b5e71a509165e3938c1990be3a1c3ea9 (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
47
{% import "github.com/go-git/go-git/v5/plumbing" %}
{% import "git.gabrielgio.me/cerrado/pkg/git" %}

{% code
type GitItemSummaryPage struct {
    Tags []*git.TagReference
    Branches []*plumbing.Reference
    Commits []*git.CommitReference
}
%}

{% 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>
  <a class="more" href="/{%s name %}/refs/">[ see refs... ]</a>
</div>
<div class="row">
  <div class="event-list">
    {% for _, c := range g.Commits %}
    {%= Commit(name, c, false) %}
    {% endfor %}
  </div>
  <a class="more" href="/{%s name %}/log/{%s ref %}/">[ see log... ]</a>
</div>
{% endfunc %}