diff options
author | Andrey Nering <andrey.nering@gmail.com> | 2016-02-08 17:03:18 -0200 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2016-02-08 17:03:18 -0200 |
commit | e40d94bb4f46a60b15a1d461f1fbbf76130a07e0 (patch) | |
tree | 7b8052d8f28ba4ac76db26f094ce58a9776e4bea /modules/setting | |
parent | 7ffe845c61fde3b2eac821a303668206b014a666 (diff) | |
download | gitea-e40d94bb4f46a60b15a1d461f1fbbf76130a07e0.tar.gz gitea-e40d94bb4f46a60b15a1d461f1fbbf76130a07e0.zip |
Implementing the "theme-color" meta tag.
Used by Android >= 5.0 to make the top bar colored.
Reference: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android
Diffstat (limited to 'modules/setting')
-rw-r--r-- | modules/setting/setting.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 99b968c880..00dae6f621 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -114,6 +114,7 @@ var ( AdminRepoPagingNum int AdminNoticePagingNum int AdminOrgPagingNum int + ThemeColorMetaTag string // Markdown sttings Markdown struct { @@ -407,6 +408,7 @@ func NewContext() { AdminRepoPagingNum = sec.Key("REPO_PAGING_NUM").MustInt(50) AdminNoticePagingNum = sec.Key("NOTICE_PAGING_NUM").MustInt(50) AdminOrgPagingNum = sec.Key("ORG_PAGING_NUM").MustInt(50) + ThemeColorMetaTag = sec.Key("THEME_COLOR_META_TAG").MustString("#ff5343") sec = Cfg.Section("picture") PictureService = sec.Key("SERVICE").In("server", []string{"server"}) |