summaryrefslogtreecommitdiffstats
path: root/templates/repo/list.tmpl
blob: 2c5432a174d5280313590a6475609fdade149981 (plain)
1
2
3
4
5
6
7
8
9
10
{{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" .}}