You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

forks.tmpl 576B

123456789101112131415161718192021222324
  1. {{template "base/head" .}}
  2. <div role="main" aria-label="{{.Title}}" class="page-content repository forks">
  3. {{template "repo/header" .}}
  4. <div class="ui container">
  5. <h2 class="ui dividing header">
  6. {{.locale.Tr "repo.forks"}}
  7. </h2>
  8. <div class="ui list">
  9. {{range .Forks}}
  10. <div class="item">
  11. {{avatar .Owner}}
  12. <div class="link">
  13. <a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a>
  14. /
  15. <a href="{{.Link}}">{{.Name}}</a>
  16. </div>
  17. </div>
  18. {{end}}
  19. </div>
  20. </div>
  21. {{template "base/paginate" .}}
  22. </div>
  23. {{template "base/footer" .}}