2015-11-22 12:02:09 +05:30
|
|
|
<div class="ui repository list">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{range .Repos}}
|
|
|
|
<div class="item">
|
|
|
|
<div class="ui header">
|
2019-06-02 12:10:12 +05:30
|
|
|
{{if .RelAvatarLink}}
|
|
|
|
<img class="ui avatar image" src="{{.RelAvatarLink}}">
|
|
|
|
{{end}}
|
2019-01-24 00:28:38 +05:30
|
|
|
<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-08 04:00:52 +05:30
|
|
|
{{if .IsPrivate}}
|
2020-02-11 22:32:41 +05:30
|
|
|
<span class="middle text gold">{{svg "octicon-lock" 16}}</span>
|
2020-06-05 17:11:06 +05:30
|
|
|
{{else if and (not .IsMirror) (not .IsFork) (.Owner.Visibility.IsPrivate) }}
|
|
|
|
<span class="text gold">{{svg "octicon-internal-repo" 16}}</span>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{else if .IsFork}}
|
2020-02-11 22:32:41 +05:30
|
|
|
<span class="middle">{{svg "octicon-repo-forked" 16}}</span>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{else if .IsMirror}}
|
2020-02-11 22:32:41 +05:30
|
|
|
<span class="middle">{{svg "octicon-repo-clone" 16}}</span>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
<div class="ui right metas">
|
2020-02-11 15:04:17 +05:30
|
|
|
{{if .PrimaryLanguage }}
|
|
|
|
<span class="text grey"><i class="color-icon" style="background-color: {{.PrimaryLanguage.Color}}"></i>{{ .PrimaryLanguage.Language }}</span>
|
|
|
|
{{end}}
|
2020-02-21 05:14:13 +05:30
|
|
|
<span class="text grey">{{svg "octicon-star" 16}} {{.NumStars}}</span>
|
2020-02-11 22:32:41 +05:30
|
|
|
<span class="text grey">{{svg "octicon-git-branch" 16}} {{.NumForks}}</span>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2019-05-30 07:52:26 +05:30
|
|
|
<div class="description">
|
2020-05-01 23:28:45 +05:30
|
|
|
{{if .DescriptionHTML}}<p>{{.DescriptionHTML}}</p>{{end}}
|
2019-05-30 07:52:26 +05:30
|
|
|
{{if .Topics }}
|
|
|
|
<div class="ui tags">
|
|
|
|
{{range .Topics}}
|
|
|
|
{{if ne . "" }}<a href="{{AppSubUrl}}/explore/repos?q={{.}}&topic=1"><div class="ui small label topic">{{.}}</div></a>{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2018-05-13 07:20:39 +05:30
|
|
|
{{end}}
|
2019-05-30 07:52:26 +05:30
|
|
|
<p class="time">{{$.i18n.Tr "org.repo_updated"}} {{TimeSinceUnix .UpdatedUnix $.i18n.Lang}}</p>
|
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2016-12-01 16:22:57 +05:30
|
|
|
{{else}}
|
|
|
|
<div>
|
|
|
|
{{$.i18n.Tr "explore.repo_no_results"}}
|
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|