2015-11-22 01:32:09 -05:00
<div class="ui repository list">
2015-12-07 23:30:52 +01:00
{{range .Repos}}
<div class="item">
<div class="ui header">
2017-12-14 20:55:08 -08:00
<a class="name" href="{{.Link}}">{{if or $.PageIsExplore $.PageIsProfileStarList }}{{if .Owner}}{{.Owner.Name}} / {{end}}{{end}}{{.Name}}</a>
2015-12-07 23:30:52 +01:00
{{if .IsPrivate}}
2016-07-16 12:45:13 +08:00
<span class="text gold"><i class="octicon octicon-lock"></i></span>
2015-12-07 23:30:52 +01:00
{{else if .IsFork}}
2016-07-16 12:45:13 +08:00
<span><i class="octicon octicon-repo-forked"></i></span>
2015-12-07 23:30:52 +01:00
{{else if .IsMirror}}
2016-07-16 12:45:13 +08:00
<span><i class="octicon octicon-repo-clone"></i></span>
2015-12-07 23:30:52 +01:00
{{end}}
2015-11-22 01:32:09 -05:00
2015-12-07 23:30:52 +01:00
<div class="ui right metas">
<span class="text grey"><i class="octicon octicon-star"></i> {{.NumStars}}</span>
<span class="text grey"><i class="octicon octicon-git-branch"></i> {{.NumForks}}</span>
</div>
</div>
2016-11-29 14:57:36 +08:00
{{if .DescriptionHTML}}<p class="has-emoji">{{.DescriptionHTML}}</p>{{end}}
2018-05-12 21:50:39 -04:00
{{if .Topics }}
<div>
{{range .Topics}}
{{if ne . "" }}<div class="ui green basic label topic">{{.}}</div>{{end}}
{{end}}
</div>
{{end}}
2017-12-11 12:37:04 +08:00
<p class="time">{{$.i18n.Tr "org.repo_updated"}} {{TimeSinceUnix .UpdatedUnix $.i18n.Lang}}</p>
2015-12-07 23:30:52 +01:00
</div>
2016-12-01 18:52:57 +08:00
{{else}}
<div>
{{$.i18n.Tr "explore.repo_no_results"}}
</div>
2015-12-07 23:30:52 +01:00
{{end}}
</div>