bench-forgejo/templates/repo/list.tmpl

10 lines
251 B
Cheetah
Raw Normal View History

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