Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

forks.tmpl 565B

123456789101112131415161718
  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. {{ctx.Locale.Tr "repo.forks"}}
  7. </h2>
  8. {{range .Forks}}
  9. <div class="tw-flex tw-content-center gt-py-3">
  10. <span class="gt-mr-2">{{ctx.AvatarUtils.Avatar .Owner}}</span>
  11. <a href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a> / <a href="{{.Link}}">{{.Name}}</a>
  12. </div>
  13. {{end}}
  14. </div>
  15. {{template "base/paginate" .}}
  16. </div>
  17. {{template "base/footer" .}}