aboutsummaryrefslogtreecommitdiff
path: root/templates/gititemlog.qtpl
blob: e5bfc1b7f2e76c0fa7e666fd480f03e20bb7bad6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% import "github.com/go-git/go-git/v5/plumbing/object" %}

{% code
type GitItemLogPage struct {
    Commits []*object.Commit
}
%}

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

{% func (g *GitItemLogPage) GitContent(name, ref string) %}
<div class="event-list">
  {% for _, c := range g.Commits %}
  {%= Commit(name, c, false) %}
  {% endfor %}
</div>
{% endfunc %}