summaryrefslogtreecommitdiffstats
path: root/modules/template
diff options
context:
space:
mode:
Diffstat (limited to 'modules/template')
-rw-r--r--modules/template/template.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/template/template.go b/modules/template/template.go
index cc670a651f..638febe89d 100644
--- a/modules/template/template.go
+++ b/modules/template/template.go
@@ -34,6 +34,9 @@ var Funcs template.FuncMap = map[string]interface{}{
"AppSubUrl": func() string {
return setting.AppSubUrl
},
+ "AppUrl": func() string {
+ return setting.AppUrl
+ },
"AppVer": func() string {
return setting.AppVer
},