1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-07-07 13:34:20 -04:00
gitea/templates/repo/list.tmpl
2014-03-07 11:14:51 +08:00

10 lines
256 B
Cheetah

{{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" .}}