mirror of
https://github.com/go-gitea/gitea
synced 2024-11-03 16:54:25 +00:00
0271114e64
Fix #27596 Change confusing behavior when showing information about a repo via labels and icons. Implement changes proposed by @lng2020 in https://github.com/go-gitea/gitea/pull/27627#pullrequestreview-1678787673.
11 lines
306 B
Handlebars
11 lines
306 B
Handlebars
{{$avatarLink := (.RelAvatarLink ctx)}}
|
|
{{if $avatarLink}}
|
|
<img class="ui avatar gt-vm" src="{{$avatarLink}}" width="32" height="32" alt="{{.FullName}}">
|
|
{{else if $.IsMirror}}
|
|
{{svg "octicon-mirror" 32}}
|
|
{{else if $.IsFork}}
|
|
{{svg "octicon-repo-forked" 32}}
|
|
{{else}}
|
|
{{svg "octicon-repo" 32}}
|
|
{{end}}
|