mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
633dc80077
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv>
16 lines
328 B
Handlebars
16 lines
328 B
Handlebars
<div class="repo-icon 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>
|