diff options
author | SagePtr <sageptr@gmail.com> | 2018-10-05 19:22:33 +0200 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-10-05 20:22:33 +0300 |
commit | c6daee6da6a095bd68e2f4e418e5abe0f4c5e3c2 (patch) | |
tree | ed337e8e91c0ec77018efd2fcb1f2cab35a59b40 /templates/explore/repo_list.tmpl | |
parent | 94cd7bb25b8f142d2865aaf740ae19cd98ca6927 (diff) | |
download | gitea-c6daee6da6a095bd68e2f4e418e5abe0f4c5e3c2.tar.gz gitea-c6daee6da6a095bd68e2f4e418e5abe0f4c5e3c2.zip |
Fix missing AppSubUrl in some templates (#5020)
Diffstat (limited to 'templates/explore/repo_list.tmpl')
-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 e769e4b7fd..625a67dfbd 100644 --- a/templates/explore/repo_list.tmpl +++ b/templates/explore/repo_list.tmpl @@ -20,7 +20,7 @@ {{if .Topics }} <div> {{range .Topics}} - {{if ne . "" }}<a href="/explore/repos?q={{.}}&topic=1"><div class="ui green basic label topic">{{.}}</div></a>{{end}} + {{if ne . "" }}<a href="{{AppSubUrl}}/explore/repos?q={{.}}&topic=1"><div class="ui green basic label topic">{{.}}</div></a>{{end}} {{end}} </div> {{end}} |