1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-02 08:05:47 +00:00
gitea/templates/repo/list.tmpl

10 lines
256 B
Cheetah
Raw Normal View History

2014-03-07 03:14:51 +00: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" .}}