diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-08 00:01:44 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-06-08 00:01:44 +0200 |
commit | 6079b1d963f34ada5c4b25363f2319901e283936 (patch) | |
tree | f7f93616eb3dacfcebee486fe7542ec3adfb3950 /templates/gititem.qtpl.go | |
parent | e9098e00fb6339b759df5b0df2e086cef8a7ce83 (diff) | |
download | cerrado-6079b1d963f34ada5c4b25363f2319901e283936.tar.gz cerrado-6079b1d963f34ada5c4b25363f2319901e283936.tar.bz2 cerrado-6079b1d963f34ada5c4b25363f2319901e283936.zip |
feat: Add error handling
Diffstat (limited to 'templates/gititem.qtpl.go')
-rw-r--r-- | templates/gititem.qtpl.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/gititem.qtpl.go b/templates/gititem.qtpl.go index 2c46104..a7ed659 100644 --- a/templates/gititem.qtpl.go +++ b/templates/gititem.qtpl.go @@ -44,7 +44,9 @@ type GitItemPage struct { //line gititem.qtpl:16 func (p *GitItemPage) StreamTitle(qw422016 *qt422016.Writer) { //line gititem.qtpl:16 - qw422016.N().S(`Git | List`) + qw422016.N().S(`Git | `) +//line gititem.qtpl:16 + qw422016.E().S(p.Name) //line gititem.qtpl:16 } |