mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01: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.
10 lines
306 B
Go HTML Template
10 lines
306 B
Go HTML Template
{{$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}}
|