summaryrefslogtreecommitdiffstats
path: root/templates/repo/commits.tmpl
blob: 4bffb9daf7fd42d2f15977b0dd9b82be0c8a5e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{template "base/head" .}}
{{template "base/navbar" .}}
{{template "repo/nav" .}}
{{template "repo/toolbar" .}}
<div id="gogs-body" class="container">
    <div id="gogs-commits">
    <ul>
    {{$r := List .Commits}}
    {{range $r}}
		    <li>{{.Committer.Name}} - {{.Id}} - {{.Message}} - {{.Committer.When}}</li>
    {{end}}
    </ul>
    </div>
</div>
{{template "base/footer" .}}