diff options
Diffstat (limited to 'templates/gititem.qtpl.go')
| -rw-r--r-- | templates/gititem.qtpl.go | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/templates/gititem.qtpl.go b/templates/gititem.qtpl.go index a7ed659..7cfeeb4 100644 --- a/templates/gititem.qtpl.go +++ b/templates/gititem.qtpl.go @@ -26,11 +26,11 @@ type GitItemBase interface {  //line gititem.qtpl:2  	WriteNav(qq422016 qtio422016.Writer, name, ref string)  //line gititem.qtpl:2 -	GitContent() string +	GitContent(name, ref string) string  //line gititem.qtpl:2 -	StreamGitContent(qw422016 *qt422016.Writer) +	StreamGitContent(qw422016 *qt422016.Writer, name, ref string)  //line gititem.qtpl:2 -	WriteGitContent(qq422016 qtio422016.Writer) +	WriteGitContent(qq422016 qtio422016.Writer, name, ref string)  //line gititem.qtpl:2  } @@ -121,7 +121,7 @@ func (p *GitItemPage) StreamContent(qw422016 *qt422016.Writer) {  <div class="container">  `)  //line gititem.qtpl:23 -	p.StreamGitContent(qw422016) +	p.StreamGitContent(qw422016, p.Name, p.Ref)  //line gititem.qtpl:23  	qw422016.N().S(`  </div> | 
