diff options
author | Runxi Yu <me@runxiyu.org> | 2025-04-03 17:45:52 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-04-03 17:45:52 +0800 |
commit | e6cf340c18ef6905e3aa888046828d3cafda0fcc (patch) | |
tree | 551ff03294c370276024517ed5154cf5ecfe5e3f | |
parent | HTTP: Fix old commit hash field on commit page (diff) | |
download | forge-e6cf340c18ef6905e3aa888046828d3cafda0fcc.tar.gz forge-e6cf340c18ef6905e3aa888046828d3cafda0fcc.tar.zst forge-e6cf340c18ef6905e3aa888046828d3cafda0fcc.zip |
HTML: Branches should link to a summary of that branch
-rw-r--r-- | templates/repo_branches.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo_branches.tmpl b/templates/repo_branches.tmpl index d561e0c..fc9592d 100644 --- a/templates/repo_branches.tmpl +++ b/templates/repo_branches.tmpl @@ -54,7 +54,7 @@ {{- range .branches -}} <tr> <td> - <a href="./?branch={{ . }}">{{ . }}</a> + <a href="../?branch={{ . }}">{{ . }}</a> </td> </tr> {{- end -}} |