mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
319 B
10 lines
319 B
{{$avatarLink := (.RelAvatarLink ctx)}} |
|
{{if $avatarLink}} |
|
<img class="ui avatar tw-align-middle" src="{{$avatarLink}}" width="24" height="24" alt aria-hidden="true"> |
|
{{else if $.IsMirror}} |
|
{{svg "octicon-mirror" 24}} |
|
{{else if $.IsFork}} |
|
{{svg "octicon-repo-forked" 24}} |
|
{{else}} |
|
{{svg "octicon-repo" 24}} |
|
{{end}}
|
|
|