list.tmpl 251 B

12345678910
  1. {{template "base/head" .}}
  2. {{template "base/navbar" .}}
  3. <div class="container" id="body">
  4. <ul>
  5. {{range .Repos}}
  6. <li>{{.Name}} stars: {{.NumStars}} forks: {{.NumForks}} watches:{{.NumWatchs}}</li>
  7. {{end}}
  8. </ul>
  9. </div>
  10. {{template "base/footer" .}}