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.

repo_list.tmpl 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <div class="ui repository list">
  2. {{range .Repos}}
  3. <div class="item">
  4. <div class="ui header">
  5. {{if .RelAvatarLink}}
  6. <img class="ui avatar image" src="{{.RelAvatarLink}}">
  7. {{end}}
  8. <a class="name" href="{{.Link}}">
  9. {{if or $.PageIsExplore $.PageIsProfileStarList }}{{if .Owner}}{{.Owner.Name}} / {{end}}{{end}}{{.Name}}
  10. {{if .IsArchived}}<i class="archive icon archived-icon"></i>{{end}}
  11. </a>
  12. {{if .IsPrivate}}
  13. <span class="text gold"><i class="octicon octicon-lock"></i></span>
  14. {{else if .IsFork}}
  15. <span><i class="octicon octicon-repo-forked"></i></span>
  16. {{else if .IsMirror}}
  17. <span><i class="octicon octicon-repo-clone"></i></span>
  18. {{else if .Owner}}
  19. {{if .Owner.Visibility.IsPrivate}}
  20. <span class="text gold"><i class="octicon octicon-lock"></i></span>
  21. {{end}}
  22. {{end}}
  23. <div class="ui right metas">
  24. <span class="text grey"><i class="octicon octicon-star"></i> {{.NumStars}}</span>
  25. <span class="text grey"><i class="octicon octicon-git-branch"></i> {{.NumForks}}</span>
  26. </div>
  27. </div>
  28. <div class="description">
  29. {{if .DescriptionHTML}}<p class="has-emoji">{{.DescriptionHTML}}</p>{{end}}
  30. {{if .Topics }}
  31. <div class="ui tags">
  32. {{range .Topics}}
  33. {{if ne . "" }}<a href="{{AppSubUrl}}/explore/repos?q={{.}}&topic=1"><div class="ui small label topic">{{.}}</div></a>{{end}}
  34. {{end}}
  35. </div>
  36. {{end}}
  37. <p class="time">{{$.i18n.Tr "org.repo_updated"}} {{TimeSinceUnix .UpdatedUnix $.i18n.Lang}}</p>
  38. </div>
  39. </div>
  40. {{else}}
  41. <div>
  42. {{$.i18n.Tr "explore.repo_no_results"}}
  43. </div>
  44. {{end}}
  45. </div>