diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-11 23:13:04 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-11 23:15:51 +0800 |
commit | b288beea9ddc5709769997a9101f25a78e286b89 (patch) | |
tree | db548c0ca63f180b25acb6f9822ab38bc41c15d0 /templates/repo_index.html.tmpl | |
parent | style.css: Fix file content background (diff) | |
download | forge-b288beea9ddc5709769997a9101f25a78e286b89.tar.gz forge-b288beea9ddc5709769997a9101f25a78e286b89.tar.zst forge-b288beea9ddc5709769997a9101f25a78e286b89.zip |
*: Use URL params to specify commits/branches/tags
Diffstat (limited to '')
-rw-r--r-- | templates/repo_index.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo_index.html.tmpl b/templates/repo_index.html.tmpl index c3b4759..2f41aac 100644 --- a/templates/repo_index.html.tmpl +++ b/templates/repo_index.html.tmpl @@ -42,7 +42,7 @@ {{- range .files }} <tr> <td class="file-mode">{{ .Mode }}</td> - <td class="file-name"><a href="tree/{{ $ref }}/{{ .Name }}">{{ .Name }}</a>{{ if not .Is_file }}/{{ end }}</td> + <td class="file-name"><a href="tree/{{ .Name }}">{{ .Name }}</a>{{ if not .Is_file }}/{{ end }}</td> <td class="file-size">{{ .Size }}</td> </tr> {{- end }} |