diff options
author | Ethan Koenig <ethantkoenig@gmail.com> | 2017-12-14 20:55:08 -0800 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2017-12-15 06:55:08 +0200 |
commit | bde0409433531b024e30cf1a4d3e44051631ed85 (patch) | |
tree | fc8f0cfffe7817f2b3b2dfeb54e528b4508a5dec /templates | |
parent | 1687aa59e636210eb044a3ad345f30d7af6ae396 (diff) | |
download | gitea-bde0409433531b024e30cf1a4d3e44051631ed85.tar.gz gitea-bde0409433531b024e30cf1a4d3e44051631ed85.zip |
Fix repo links on user profile (#3197)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/explore/repo_list.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/explore/repo_list.tmpl b/templates/explore/repo_list.tmpl index 06e3c0afd8..041bda8d9a 100644 --- a/templates/explore/repo_list.tmpl +++ b/templates/explore/repo_list.tmpl @@ -2,7 +2,7 @@ {{range .Repos}} <div class="item"> <div class="ui header"> - <a class="name" href="{{.HTMLURL}}">{{if or $.PageIsExplore $.PageIsProfileStarList }}{{if .Owner}}{{.Owner.Name}} / {{end}}{{end}}{{.Name}}</a> + <a class="name" href="{{.Link}}">{{if or $.PageIsExplore $.PageIsProfileStarList }}{{if .Owner}}{{.Owner.Name}} / {{end}}{{end}}{{.Name}}</a> {{if .IsPrivate}} <span class="text gold"><i class="octicon octicon-lock"></i></span> {{else if .IsFork}} |