2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-list">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{range .Repos}}
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item">
|
|
|
|
<div class="flex-item-leading">
|
2023-08-08 09:29:35 +02:00
|
|
|
{{template "repo/icon" .}}
|
2023-08-01 00:13:42 +02:00
|
|
|
</div>
|
|
|
|
<div class="flex-item-main">
|
|
|
|
<div class="flex-item-header">
|
|
|
|
<div class="flex-item-title">
|
2024-01-05 04:34:35 +01:00
|
|
|
{{if and (or $.PageIsExplore $.PageIsProfileStarList) .Owner}}
|
|
|
|
<a class="text primary name" href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a>/
|
|
|
|
{{end}}
|
|
|
|
<a class="text primary name" href="{{.Link}}">{{.Name}}</a>
|
2023-08-01 00:13:42 +02:00
|
|
|
<span class="label-list">
|
|
|
|
{{if .IsArchived}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.archived"}}</span>
|
2020-12-08 05:14:28 +01:00
|
|
|
{{end}}
|
2023-10-16 23:06:15 +02:00
|
|
|
{{if .IsPrivate}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.private"}}</span>
|
2020-12-08 05:14:28 +01:00
|
|
|
{{else}}
|
2023-10-16 23:06:15 +02:00
|
|
|
{{if .Owner.Visibility.IsPrivate}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.internal"}}</span>
|
2020-12-08 05:14:28 +01:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2023-10-16 23:06:15 +02:00
|
|
|
{{if .IsTemplate}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.template"}}</span>
|
|
|
|
{{end}}
|
2024-01-19 17:05:02 +01:00
|
|
|
{{if eq .ObjectFormatName "sha256"}}
|
|
|
|
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.sha256"}}</span>
|
|
|
|
{{end}}
|
2023-08-01 00:13:42 +02:00
|
|
|
</span>
|
2020-12-08 05:14:28 +01:00
|
|
|
</div>
|
2024-03-21 18:04:03 +01:00
|
|
|
<div class="flex-item-trailing muted-links">
|
2023-08-01 00:13:42 +02:00
|
|
|
{{if .PrimaryLanguage}}
|
2024-03-21 18:04:03 +01:00
|
|
|
<a class="flex-text-inline" href="?q={{$.Keyword}}&sort={{$.SortType}}&language={{.PrimaryLanguage.Language}}{{if $.TabName}}&tab={{$.TabName}}{{end}}">
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 17:42:49 +01:00
|
|
|
<i class="color-icon tw-mr-2" style="background-color: {{.PrimaryLanguage.Color}}"></i>
|
2024-03-21 18:04:03 +01:00
|
|
|
{{.PrimaryLanguage.Language}}
|
2023-08-01 00:13:42 +02:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{if not $.DisableStars}}
|
2024-03-21 18:04:03 +01:00
|
|
|
<a class="flex-text-inline" href="{{.Link}}/stars">
|
|
|
|
<span aria-label="{{ctx.Locale.Tr "repo.stars"}}">{{svg "octicon-star" 16}}</span>
|
|
|
|
<span {{if ge .NumStars 1000}}data-tooltip-content="{{.NumStars}}"{{end}}>{{CountFmt .NumStars}}</span>
|
|
|
|
</a>
|
2023-08-01 00:13:42 +02:00
|
|
|
{{end}}
|
2024-03-21 18:04:03 +01:00
|
|
|
<a class="flex-text-inline" href="{{.Link}}/forks">
|
|
|
|
<span aria-label="{{ctx.Locale.Tr "repo.forks"}}">{{svg "octicon-git-branch" 16}}</span>
|
|
|
|
<span {{if ge .NumForks 1000}}data-tooltip-content="{{.NumForks}}"{{end}}>{{CountFmt .NumForks}}</span>
|
|
|
|
</a>
|
2023-08-01 00:13:42 +02:00
|
|
|
</div>
|
2020-12-08 05:14:28 +01:00
|
|
|
</div>
|
2022-08-25 23:55:52 +02:00
|
|
|
{{$description := .DescriptionHTML $.Context}}
|
2023-08-01 00:13:42 +02:00
|
|
|
{{if $description}}
|
|
|
|
<div class="flex-item-body">{{$description}}</div>
|
|
|
|
{{end}}
|
2022-08-25 23:55:52 +02:00
|
|
|
{{if .Topics}}
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="label-list">
|
2019-05-30 04:22:26 +02:00
|
|
|
{{range .Topics}}
|
2023-06-24 14:30:46 +02:00
|
|
|
{{if ne . ""}}<a class="ui label" href="{{AppSubUrl}}/explore/repos?q={{.}}&topic=1">{{.}}</a>{{end}}
|
2019-05-30 04:22:26 +02:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2018-05-13 03:50:39 +02:00
|
|
|
{{end}}
|
2023-09-25 14:42:40 +02:00
|
|
|
<div class="flex-item-body">{{ctx.Locale.Tr "org.repo_updated"}} {{TimeSinceUnix .UpdatedUnix ctx.Locale}}</div>
|
2019-05-30 04:22:26 +02:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2016-12-01 11:52:57 +01:00
|
|
|
{{else}}
|
|
|
|
<div>
|
2024-03-15 00:24:59 +01:00
|
|
|
{{ctx.Locale.Tr "search.no_results"}}
|
2016-12-01 11:52:57 +01:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
</div>
|