We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92711b0 commit dd56933Copy full SHA for dd56933
templates/explore/repo_list.tmpl
@@ -7,9 +7,10 @@
7
<div class="flex-item-main">
8
<div class="flex-item-header">
9
<div class="flex-item-title">
10
- <a class="text primary name" href="{{.Link}}">
11
- {{if or $.PageIsExplore $.PageIsProfileStarList}}{{if .Owner}}{{.Owner.Name}} / {{end}}{{end}}{{.Name}}
12
- </a>
+ {{if and (or $.PageIsExplore $.PageIsProfileStarList) .Owner}}
+ <a class="text primary name" href="{{.Owner.HomeLink}}">{{.Owner.Name}}</a>/
+ {{end}}
13
+ <a class="text primary name" href="{{.Link}}">{{.Name}}</a>
14
<span class="label-list">
15
{{if .IsArchived}}
16
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.archived"}}</span>
0 commit comments