diff options
Diffstat (limited to 'templates/repo/icon.tmpl')
-rw-r--r-- | templates/repo/icon.tmpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/repo/icon.tmpl b/templates/repo/icon.tmpl new file mode 100644 index 00000000..e5e0bd68 --- /dev/null +++ b/templates/repo/icon.tmpl @@ -0,0 +1,10 @@ +{{$avatarLink := (.RelAvatarLink ctx)}} +{{if $avatarLink}} + <img class="ui avatar tw-align-middle" src="{{$avatarLink}}" width="24" height="24" alt="{{.FullName}}"> +{{else if $.IsMirror}} + {{svg "octicon-mirror" 24}} +{{else if $.IsFork}} + {{svg "octicon-repo-forked" 24}} +{{else}} + {{svg "octicon-repo" 24}} +{{end}} |