Files
Atay-Makhzan/templates/repo/icon.tmpl
T

16 lines
328 B
Handlebars
Raw Normal View History

2020-12-08 05:14:28 +01:00
<div class="repo-icon mr-3">
{{if $.IsTemplate}}
2020-07-17 17:15:12 +02:00
{{svg "octicon-repo-template" 32}}
{{else}}
{{if $.IsPrivate}}
{{svg "octicon-lock" 32}}
{{else if $.IsMirror}}
2020-07-17 17:15:12 +02:00
{{svg "octicon-mirror" 32}}
{{else if $.IsFork}}
{{svg "octicon-repo-forked" 32}}
{{else}}
{{svg "octicon-repo" 32}}
{{end}}
{{end}}
</div>