1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-29 14:45:47 +00:00
gitea/templates/repo/list.tmpl
2014-03-25 18:44:37 +08:00

10 lines
251 B
Cheetah

{{template "base/head" .}}
{{template "base/navbar" .}}
<div class="container" id="body">
<ul>
{{range .Repos}}
<li>{{.Name}} stars: {{.NumStars}} forks: {{.NumForks}} watches:{{.NumWatchs}}</li>
{{end}}
</ul>
</div>
{{template "base/footer" .}}