mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 21:29:12 +01:00
0ea479561d
* Add org avatar on top of internal repo icon * add color for arc-green * use wrapper div to avoid negative margins * rename class and move div * move div to icon tmpl * remove unnecessary margin for lock octicon * fix label align together with #11891 Co-authored-by: techknowlogick <techknowlogick@gitea.io>
26 lines
680 B
Cheetah
26 lines
680 B
Cheetah
<div class="repo-header-icon">
|
|
{{if $.IsTemplate}}
|
|
{{if $.IsPrivate}}
|
|
{{svg "octicon-repo-template-private" 32}}
|
|
{{else}}
|
|
{{svg "octicon-repo-template" 32}}
|
|
{{end}}
|
|
{{else}}
|
|
{{if $.IsPrivate}}
|
|
{{svg "octicon-lock" 32}}
|
|
{{else if and (not $.IsMirror) (not $.IsFork) ($.Owner)}}
|
|
{{if $.Owner.Visibility.IsPrivate}}
|
|
{{svg "octicon-internal-repo" 32}}
|
|
<img class="ui avatar image" src="{{$.Owner.RelAvatarLink}}">
|
|
{{else}}
|
|
{{svg "octicon-repo" 32}}
|
|
{{end}}
|
|
{{else if $.IsMirror}}
|
|
{{svg "octicon-repo-clone" 32}}
|
|
{{else if $.IsFork}}
|
|
{{svg "octicon-repo-forked" 32}}
|
|
{{else}}
|
|
{{svg "octicon-repo" 32}}
|
|
{{end}}
|
|
{{end}}
|
|
</div>
|