gitea/templates/repo/list.tmpl

10 lines
251 B
Cheetah
Raw Normal View History

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