1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00
This commit is contained in:
Unknwon
2015-11-22 02:42:39 -05:00
parent e6b2a01e5d
commit efaf60ba5a
2 changed files with 4 additions and 1 deletions

View File

@@ -25,6 +25,9 @@ var Funcs template.FuncMap = map[string]interface{}{
"GoVer": func() string {
return strings.Title(runtime.Version())
},
"Protocol": func() string {
return string(setting.Protocol)
},
"AppName": func() string {
return setting.AppName
},