diff options
Diffstat (limited to 'templates/repo/list.tmpl')
-rw-r--r-- | templates/repo/list.tmpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/repo/list.tmpl b/templates/repo/list.tmpl new file mode 100644 index 0000000000..403c62d62c --- /dev/null +++ b/templates/repo/list.tmpl @@ -0,0 +1,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" .}}
\ No newline at end of file |