diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2025-07-02 20:45:16 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2025-07-02 20:45:16 +0200 |
commit | d1638198df3a65fe89bfb28f6e1dd285877b55bc (patch) | |
tree | d7532d4f346e3ad8cf36ae95e365e79f8aa334e5 /templates/gititemblob.qtpl.go | |
parent | cb6060a60d71ce1be1591bb10f499916155160de (diff) | |
download | cerrado-d1638198df3a65fe89bfb28f6e1dd285877b55bc.tar.gz cerrado-d1638198df3a65fe89bfb28f6e1dd285877b55bc.tar.bz2 cerrado-d1638198df3a65fe89bfb28f6e1dd285877b55bc.zip |
Diffstat (limited to 'templates/gititemblob.qtpl.go')
-rw-r--r-- | templates/gititemblob.qtpl.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/gititemblob.qtpl.go b/templates/gititemblob.qtpl.go index 73742f6..4843882 100644 --- a/templates/gititemblob.qtpl.go +++ b/templates/gititemblob.qtpl.go @@ -70,7 +70,7 @@ func (g *GitItemBlobPage) StreamGitContent(qw422016 *qt422016.Writer, name, ref //line templates/gititemblob.qtpl:15 qw422016.N().S(`<a href="`) //line templates/gititemblob.qtpl:16 - qw422016.E().S(url(name, Folder, ref, Root, []string{})) + qw422016.E().S(generateURL(name, Folder, ref, Root, []string{})) //line templates/gititemblob.qtpl:16 qw422016.N().S(`">root/</a>`) //line templates/gititemblob.qtpl:17 @@ -78,7 +78,7 @@ func (g *GitItemBlobPage) StreamGitContent(qw422016 *qt422016.Writer, name, ref //line templates/gititemblob.qtpl:17 qw422016.N().S(`<a href="`) //line templates/gititemblob.qtpl:18 - qw422016.E().S(url(name, Folder, ref, Root, g.Path[:1+i])) + qw422016.E().S(generateURL(name, Folder, ref, Root, g.Path[:1+i])) //line templates/gititemblob.qtpl:18 qw422016.N().S(`">`) //line templates/gititemblob.qtpl:18 |