summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authoryp05327 <576951401@qq.com>2024-01-05 11:34:35 +0800
committerGitHub <noreply@github.com>2024-01-05 03:34:35 +0000
commitdd5693387e0642e1aba05b01eeb18139ce90ef5e (patch)
tree0cbda75a5f314328f59e4d7b63d1647d0ed7d841 /templates
parent92711b001e8c1433eaf7833d33dd73beb32f846c (diff)
downloadgitea-dd5693387e0642e1aba05b01eeb18139ce90ef5e.tar.gz
gitea-dd5693387e0642e1aba05b01eeb18139ce90ef5e.zip
Add links to owner home page in explore (#28341)
User can select access repo or owner's home page. Before: ![image](https://github.com/go-gitea/gitea/assets/18380374/f40a833f-8560-4585-b047-3a225be2e6ee) After: ![image](https://github.com/go-gitea/gitea/assets/18380374/7893bf3a-5050-4bcb-af99-d56d6c7925f8)
Diffstat (limited to 'templates')
-rw-r--r--templates/explore/repo_list.tmpl7
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/explore/repo_list.tmpl b/templates/explore/repo_list.tmpl
index 05406ad559..b28aa02c1e 100644
--- a/templates/explore/repo_list.tmpl
+++ b/templates/explore/repo_list.tmpl
@@ -7,9 +7,10 @@
<div class="flex-item-main">
<div class="flex-item-header">
<div class="flex-item-title">
- <a class="text primary name" href="{{.Link}}">
- {{if or $.PageIsExplore $.PageIsProfileStarList}}{{if .Owner}}{{.Owner.Name}} / {{end}}{{end}}{{.Name}}
- </a>
+ {{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>
<span class="label-list">
{{if .IsArchived}}
<span class="ui basic label">{{ctx.Locale.Tr "repo.desc.archived"}}</span>