code.gitea.io/gitea@v1.22.3/templates/repo/icon.tmpl (about)

     1  {{$avatarLink := (.RelAvatarLink ctx)}}
     2  {{if $avatarLink}}
     3  	<img class="ui avatar tw-align-middle" src="{{$avatarLink}}" width="24" height="24" alt="{{.FullName}}">
     4  {{else if $.IsMirror}}
     5  	{{svg "octicon-mirror" 24}}
     6  {{else if $.IsFork}}
     7  	{{svg "octicon-repo-forked" 24}}
     8  {{else}}
     9  	{{svg "octicon-repo" 24}}
    10  {{end}}