0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-06-26 14:28:26 +02:00
gitea/templates/repo/icon.tmpl

16 lines
331 B
Handlebars
Raw Normal View History

<div class="repo-icon gt-mr-3">
{{if $.IsTemplate}}
{{svg "octicon-repo-template" 32}}
{{else}}
{{if $.IsPrivate}}
{{svg "octicon-lock" 32}}
{{else if $.IsMirror}}
{{svg "octicon-mirror" 32}}
{{else if $.IsFork}}
{{svg "octicon-repo-forked" 32}}
{{else}}
{{svg "octicon-repo" 32}}
{{end}}
{{end}}
</div>