2015-11-21 23:32:09 -07:00
|
|
|
<div class="ui repository list">
|
2015-12-07 15:30:52 -07:00
|
|
|
{{range .Repos}}
|
|
|
|
<div class="item">
|
|
|
|
<div class="ui header">
|
2019-01-23 11:58:38 -07:00
|
|
|
<a class="name" href="{{.Link}}">
|
|
|
|
{{if or $.PageIsExplore $.PageIsProfileStarList }}{{if .Owner}}{{.Owner.Name}} / {{end}}{{end}}{{.Name}}
|
|
|
|
{{if .IsArchived}}<i class="archive icon archived-icon"></i>{{end}}
|
|
|
|
</a>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{if .IsPrivate}}
|
2016-07-15 22:45:13 -06:00
|
|
|
<span class="text gold"><i class="octicon octicon-lock"></i></span>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{else if .IsFork}}
|
2016-07-15 22:45:13 -06:00
|
|
|
<span><i class="octicon octicon-repo-forked"></i></span>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{else if .IsMirror}}
|
2016-07-15 22:45:13 -06:00
|
|
|
<span><i class="octicon octicon-repo-clone"></i></span>
|
2019-02-18 09:00:27 -07:00
|
|
|
{{else if .Owner}}
|
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
|
|
<span class="text gold"><i class="octicon octicon-lock"></i></span>
|
|
|
|
{{end}}
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
|
|
|
<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-28 23:57:36 -07:00
|
|
|
{{if .DescriptionHTML}}<p class="has-emoji">{{.DescriptionHTML}}</p>{{end}}
|
2018-05-12 19:50:39 -06:00
|
|
|
{{if .Topics }}
|
|
|
|
<div>
|
|
|
|
{{range .Topics}}
|
2018-10-05 11:22:33 -06:00
|
|
|
{{if ne . "" }}<a href="{{AppSubUrl}}/explore/repos?q={{.}}&topic=1"><div class="ui green basic label topic">{{.}}</div></a>{{end}}
|
2018-05-12 19:50:39 -06:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-12-10 21:37:04 -07:00
|
|
|
<p class="time">{{$.i18n.Tr "org.repo_updated"}} {{TimeSinceUnix .UpdatedUnix $.i18n.Lang}}</p>
|
2015-12-07 15:30:52 -07:00
|
|
|
</div>
|
2016-12-01 03:52:57 -07:00
|
|
|
{{else}}
|
|
|
|
<div>
|
|
|
|
{{$.i18n.Tr "explore.repo_no_results"}}
|
|
|
|
</div>
|
2015-12-07 15:30:52 -07:00
|
|
|
{{end}}
|
|
|
|
</div>
|