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">
2020-12-08 05:14:28 +01:00
<div class="ui header df ac">
<div class="repo-title">
{{ $ avatar : = ( repoAvatar . 3 2 "mr-3" ) }}
{{ if $ avatar }}
{{ $ avatar }}
2020-06-22 22:20:51 +02:00
{{ end }}
2020-12-08 05:14:28 +01: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 }}
2022-06-27 22:58:46 +02:00
<span class="ui basic label"> {{ $ .locale .Tr "repo.desc.archived" }} </span>
2020-06-22 22:20:51 +02:00
{{ end }}
2020-12-08 05:14:28 +01:00
{{ if .IsTemplate }}
{{ if .IsPrivate }}
2022-06-27 22:58:46 +02:00
<span class="ui basic label"> {{ $ .locale .Tr "repo.desc.private_template" }} </span>
2020-12-08 05:14:28 +01:00
{{ else }}
{{ if .Owner .Visibility .IsPrivate }}
2022-06-27 22:58:46 +02:00
<span class="ui basic label"> {{ $ .locale .Tr "repo.desc.internal_template" }} </span>
2020-12-08 05:14:28 +01:00
{{ end }}
{{ end }}
{{ else }}
{{ if .IsPrivate }}
2022-06-27 22:58:46 +02:00
<span class="ui basic label"> {{ $ .locale .Tr "repo.desc.private" }} </span>
2020-12-08 05:14:28 +01:00
{{ else }}
{{ if .Owner .Visibility .IsPrivate }}
2022-06-27 22:58:46 +02:00
<span class="ui basic label"> {{ $ .locale .Tr "repo.desc.internal" }} </span>
2020-12-08 05:14:28 +01:00
{{ end }}
{{ end }}
{{ end }}
{{ if .IsFork }}
2022-07-08 04:17:41 +08:00
<span class="tooltip" data-content=" {{ $ .locale .Tr "repo.fork" }} " data-position="bottom center"> {{ svg "octicon-repo-forked" }} </span>
2020-12-08 05:14:28 +01:00
{{ else if .IsMirror }}
2022-07-08 04:17:41 +08:00
<span class="tooltip" data-content=" {{ $ .locale .Tr "mirror" }} " data-position="bottom center"> {{ svg "octicon-mirror" }} </span>
2020-12-08 05:14:28 +01:00
{{ end }}
</div>
</div>
2020-12-20 19:00:03 +01:00
<div class="metas df ac">
2020-02-11 11:34:17 +02:00
{{ if .PrimaryLanguage }}
2022-06-15 18:05:32 +03:00
<a href=" {{ $ .Link }} ?q= {{ $ .Keyword }} &sort= {{ $ .SortType }} &language= {{ .PrimaryLanguage .Language }} ">
2022-01-28 13:29:04 +02:00
<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 11:34:17 +02:00
{{ end }}
2021-04-15 10:53:57 -06:00
{{ if not $ .DisableStars }}
<span class="text grey df ac mr-3"> {{ svg "octicon-star" 1 6 "mr-3" }} {{ .NumStars }} </span>
{{ end }}
2020-12-20 19:00:03 +01:00
<span class="text grey df ac mr-3"> {{ svg "octicon-git-branch" 1 6 "mr-3" }} {{ .NumForks }} </span>
2015-12-07 23:30:52 +01:00
</div>
</div>
2019-05-30 05:22:26 +03:00
<div class="description">
2022-01-19 23:26:57 +00:00
{{ $ description : = .DescriptionHTML $ .Context }}
{{ if $ description }} <p> {{ $ description }} </p> {{ end }}
2019-05-30 05:22:26 +03: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 }}
2022-06-27 22:58:46 +02:00
<p class="time"> {{ $ .locale .Tr "org.repo_updated" }} {{ TimeSinceUnix .UpdatedUnix $ .locale }} </p>
2019-05-30 05:22:26 +03:00
</div>
2015-12-07 23:30:52 +01:00
</div>
2016-12-01 18:52:57 +08:00
{{ else }}
<div>
2022-06-27 22:58:46 +02:00
{{ $ .locale .Tr "explore.repo_no_results" }}
2016-12-01 18:52:57 +08:00
</div>
2015-12-07 23:30:52 +01:00
{{ end }}
</div>