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 529B

123456789101112
  1. <li {{if .IsPrivate}}class="private"{{end}}>
  2. <a href="{{.Owner.Name}}/{{.Name}}">
  3. <i class="octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i>
  4. <span class="repo-name">
  5. <!-- <span class="repo-name-prefix">gogits / </span> -->
  6. <strong class="repo">{{.Name}}</strong>
  7. </span>
  8. <span class="right repo-star">
  9. <i class="octicon octicon-star"></i>{{.NumStars}}
  10. </span>
  11. </a>
  12. </li>