gitea/templates/repo/list.tmpl

10 lines
256 B
Cheetah
Raw Normal View History

2014-03-07 04:14:51 +01:00
{{template "base/head" .}}
{{template "base/navbar" .}}
<div class="container" id="gogs-body">
<ul>
{{range .Repos}}
<li>{{.Name}} stars: {{.NumStars}} forks: {{.NumForks}} watches:{{.NumWatchs}}</li>
{{end}}
</ul>
</div>
{{template "base/footer" .}}