diff options
Diffstat (limited to 'pkg/handler/git/handler.go')
-rw-r--r-- | pkg/handler/git/handler.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/handler/git/handler.go b/pkg/handler/git/handler.go index cb202a2..ffa5dfd 100644 --- a/pkg/handler/git/handler.go +++ b/pkg/handler/git/handler.go @@ -38,6 +38,7 @@ type ( GetRootReadme() string GetSyntaxHighlight() string GetOrderBy() config.OrderBy + GetHostname() string } ) @@ -194,6 +195,7 @@ func (g *GitHandler) Summary(w http.ResponseWriter, r *ext.Request) error { Tags: tags, Branches: branches, Commits: commits, + Hostname: g.config.GetHostname(), }, } templates.WritePageTemplate(w, gitList, r.Context()) |