diff options
author | John Olheiser <john.olheiser@gmail.com> | 2020-12-03 06:53:21 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 13:53:21 +0100 |
commit | e306c292ac478c0f09b2c02908e485132669aacb (patch) | |
tree | 8cd8718953a614577da00ee7be6bed0033e76f34 /templates/base | |
parent | 056b8f5b52fc0e9ab32f99c016e1ee28975c4bcd (diff) | |
download | gitea-e306c292ac478c0f09b2c02908e485132669aacb.tar.gz gitea-e306c292ac478c0f09b2c02908e485132669aacb.zip |
Expose default theme in meta and API (#13809)
Signed-off-by: jolheiser <john.olheiser@gmail.com>
Co-authored-by: 6543 <6543@obermui.de>
Diffstat (limited to 'templates/base')
-rw-r--r-- | templates/base/head.tmpl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/templates/base/head.tmpl b/templates/base/head.tmpl index c8e669387b..9536545041 100644 --- a/templates/base/head.tmpl +++ b/templates/base/head.tmpl @@ -7,6 +7,7 @@ <title>{{if .Title}}{{.Title | RenderEmojiPlain}} - {{end}} {{if .Repository.Name}}{{.Repository.Name}} - {{end}}{{AppName}} </title> <link rel="manifest" href="{{AppSubUrl}}/manifest.json" crossorigin="use-credentials"> <meta name="theme-color" content="{{ThemeColorMetaTag}}"> + <meta name="default-theme" content="{{DefaultTheme}}" /> <meta name="author" content="{{if .Repository}}{{.Owner.Name}}{{else}}{{MetaAuthor}}{{end}}" /> <meta name="description" content="{{if .Repository}}{{.Repository.Name}}{{if .Repository.Description}} - {{.Repository.Description}}{{end}}{{else}}{{MetaDescription}}{{end}}" /> <meta name="keywords" content="{{MetaKeywords}}"> |