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

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

{% func (g *GitItemRefsPage) Nav(name, ref string) %}{%= GitItemNav(name, ref, Refs) %}{% endfunc %}

{% func (g *GitItemRefsPage) 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>
{% endfunc %}