本站源代码
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.

47 lines
1.7KB

  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 gt .NextPoint 0}}下一贡献奖励 {{.NextPoint}} 个红包{{end}}
  13. {{if .IsPrivate}}
  14. <span class="text gold"><i class="octicon octicon-lock"></i></span>
  15. {{else if .IsFork}}
  16. <span><i class="octicon octicon-repo-forked"></i></span>
  17. {{else if .IsMirror}}
  18. <span><i class="octicon octicon-repo-clone"></i></span>
  19. {{else if .Owner}}
  20. {{if .Owner.Visibility.IsPrivate}}
  21. <span class="text gold"><i class="octicon octicon-lock"></i></span>
  22. {{end}}
  23. {{end}}
  24. <div class="ui right metas">
  25. <span class="text grey"><i class="octicon octicon-star"></i> {{.NumStars}}</span>
  26. <span class="text grey"><i class="octicon octicon-git-branch"></i> {{.NumForks}}</span>
  27. </div>
  28. </div>
  29. <div class="description">
  30. {{if .DescriptionHTML}}<p class="has-emoji">{{.DescriptionHTML}}</p>{{end}}
  31. {{if .Topics }}
  32. <div class="ui tags">
  33. {{range .Topics}}
  34. {{if ne . "" }}<a href="{{AppSubUrl}}/explore/repos?q={{.}}&topic=1"><div class="ui small label topic">{{.}}</div></a>{{end}}
  35. {{end}}
  36. </div>
  37. {{end}}
  38. <p class="time">{{$.i18n.Tr "org.repo_updated"}} {{TimeSinceUnix .UpdatedUnix $.i18n.Lang}}</p>
  39. </div>
  40. </div>
  41. {{else}}
  42. <div>
  43. {{$.i18n.Tr "explore.repo_no_results"}}
  44. </div>
  45. {{end}}
  46. </div>
上海开阖软件有限公司 沪ICP备12045867号-1