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