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

21 lines
490 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 and (not $.IsMirror) (not $.IsFork) ($.Owner)}}
2020-07-17 17:15:12 +02:00
{{svg "octicon-repo" 32}}
{{if $.Owner.Visibility.IsPrivate}}
2020-12-03 19:46:11 +01:00
{{avatar $.Owner}}
{{end}}
{{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>