summaryrefslogtreecommitdiffstats
path: root/templates/repo/icon.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/repo/icon.tmpl')
-rw-r--r--templates/repo/icon.tmpl10
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/repo/icon.tmpl b/templates/repo/icon.tmpl
new file mode 100644
index 0000000..e5e0bd6
--- /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}}