2015-11-22 01:32:09 -05:00
|
|
|
<div class="ui repository list">
|
2015-12-07 17:30:52 -05:00
|
|
|
{{range .Repos}}
|
|
|
|
<div class="item">
|
2020-12-07 23:14:28 -05:00
|
|
|
<div class="ui header df ac">
|
|
|
|
<div class="repo-title">
|
|
|
|
{{$avatar := (repoAvatar . 32 "mr-3")}}
|
|
|
|
{{if $avatar}}
|
|
|
|
{{$avatar}}
|
2020-06-22 16:20:51 -04:00
|
|
|
{{end}}
|
2020-12-07 23:14:28 -05:00
|
|
|
<a class="name" href="{{.Link}}">
|
|
|
|
{{if or $.PageIsExplore $.PageIsProfileStarList }}{{if .Owner}}{{.Owner.Name}} / {{end}}{{end}}{{.Name}}
|
|
|
|
</a>
|
|
|
|
<div class="labels df ac fw">
|
|
|
|
{{if .IsArchived}}
|
|
|
|
<span class="ui basic label">{{$.i18n.Tr "repo.desc.archived"}}</span>
|
2020-06-22 16:20:51 -04:00
|
|
|
{{end}}
|
2020-12-07 23:14:28 -05:00
|
|
|
{{if .IsTemplate}}
|
|
|
|
{{if .IsPrivate}}
|
|
|
|
<span class="ui basic label">{{$.i18n.Tr "repo.desc.private_template"}}</span>
|
|
|
|
{{else}}
|
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
|
|
<span class="ui basic label">{{$.i18n.Tr "repo.desc.internal_template"}}</span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{else}}
|
|
|
|
{{if .IsPrivate}}
|
|
|
|
<span class="ui basic label">{{$.i18n.Tr "repo.desc.private"}}</span>
|
|
|
|
{{else}}
|
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
|
|
<span class="ui basic label">{{$.i18n.Tr "repo.desc.internal"}}</span>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
{{if .IsFork}}
|
|
|
|
{{svg "octicon-repo-forked"}}
|
|
|
|
{{else if .IsMirror}}
|
|
|
|
{{svg "octicon-mirror"}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-20 13:00:03 -05:00
|
|
|
<div class="metas df ac">
|
2020-02-11 04:34:17 -05:00
|
|
|
{{if .PrimaryLanguage }}
|
2022-01-28 06:29:04 -05:00
|
|
|
<a href="{{$.Link}}?tab={{$.TabName}}&q={{$.Keyword}}&sort={{$.SortType}}&language={{.PrimaryLanguage.Language}}">
|
|
|
|
<span class="text grey df ac mr-3"><i class="color-icon mr-3" style="background-color: {{.PrimaryLanguage.Color}}"></i>{{ .PrimaryLanguage.Language }}</span>
|
|
|
|
</a>
|
2020-02-11 04:34:17 -05:00
|
|
|
{{end}}
|
2021-04-15 12:53:57 -04:00
|
|
|
{{if not $.DisableStars}}
|
|
|
|
<span class="text grey df ac mr-3">{{svg "octicon-star" 16 "mr-3"}}{{.NumStars}}</span>
|
|
|
|
{{end}}
|
2020-12-20 13:00:03 -05:00
|
|
|
<span class="text grey df ac mr-3">{{svg "octicon-git-branch" 16 "mr-3"}}{{.NumForks}}</span>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-05-29 22:22:26 -04:00
|
|
|
<div class="description">
|
2022-01-19 18:26:57 -05:00
|
|
|
{{ $description := .DescriptionHTML $.Context}}
|
|
|
|
{{if $description}}<p>{{$description}}</p>{{end}}
|
2019-05-29 22:22:26 -04:00
|
|
|
{{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-12 21:50:39 -04:00
|
|
|
{{end}}
|
2019-05-29 22:22:26 -04:00
|
|
|
<p class="time">{{$.i18n.Tr "org.repo_updated"}} {{TimeSinceUnix .UpdatedUnix $.i18n.Lang}}</p>
|
|
|
|
</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2016-12-01 05:52:57 -05:00
|
|
|
{{else}}
|
|
|
|
<div>
|
|
|
|
{{$.i18n.Tr "explore.repo_no_results"}}
|
|
|
|
</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
{{end}}
|
|
|
|
</div>
|