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.

icon.tmpl 328B

123456789101112131415
  1. <div class="repo-icon mr-3">
  2. {{if $.IsTemplate}}
  3. {{svg "octicon-repo-template" 32}}
  4. {{else}}
  5. {{if $.IsPrivate}}
  6. {{svg "octicon-lock" 32}}
  7. {{else if $.IsMirror}}
  8. {{svg "octicon-mirror" 32}}
  9. {{else if $.IsFork}}
  10. {{svg "octicon-repo-forked" 32}}
  11. {{else}}
  12. {{svg "octicon-repo" 32}}
  13. {{end}}
  14. {{end}}
  15. </div>