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