summaryrefslogtreecommitdiffstats
path: root/templates/repo/header_icon.tmpl
blob: 7883ee9bc657b697d2a2905c477d6280b841668e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="repo-header-icon">
	{{if $.IsTemplate}}
		{{svg "octicon-repo-template" 32}}
	{{else}}
		{{if $.IsPrivate}}
			{{svg "octicon-lock" 32}}
		{{else if and (not $.IsMirror) (not $.IsFork) ($.Owner)}}
			{{svg "octicon-repo" 32}}
			{{if $.Owner.Visibility.IsPrivate}}
				<img class="ui avatar image" src="{{$.Owner.RelAvatarLink}}">
			{{end}}
		{{else if $.IsMirror}}
			{{svg "octicon-mirror" 32}}
		{{else if $.IsFork}}
			{{svg "octicon-repo-forked" 32}}
		{{else}}
			{{svg "octicon-repo" 32}}
		{{end}}
	{{end}}
</div>