diff options
author | Odin Ugedal <odin@ugedal.com> | 2016-03-15 19:57:19 +0100 |
---|---|---|
committer | Odin Ugedal <odin@ugedal.com> | 2016-03-15 19:57:19 +0100 |
commit | a75fa58e1cea3dc58b613e28859a1d317e84e9cb (patch) | |
tree | c7257b877a09915676000c21a9f4b5792acdfe72 | |
parent | 561e5f9ccbf1459409754455f20c4f50229978b6 (diff) | |
download | gitea-a75fa58e1cea3dc58b613e28859a1d317e84e9cb.tar.gz gitea-a75fa58e1cea3dc58b613e28859a1d317e84e9cb.zip |
Make description meta tag golang 1.4 compatible
-rw-r--r-- | templates/base/head.tmpl | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/templates/base/head.tmpl b/templates/base/head.tmpl index e49e165e8a..57aa136cbc 100644 --- a/templates/base/head.tmpl +++ b/templates/base/head.tmpl @@ -3,19 +3,8 @@ <head data-suburl="{{AppSubUrl}}"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> - <meta name="author" content=" - {{- if .Repository -}} - {{.Owner.Name}} - {{- else -}} - Gogs - Go Git Service - {{- end}}" /> - <meta name="description" content=" - {{- if.Repository -}} - {{.Repository.Name}} - {{- if .Repository.Description}} - {{.Repository.Description}}{{end}} - {{- else -}} - Gogs (Go Git Service) is a painless self-hosted Git service written in Go - {{- end}}" /> + <meta name="author" content="{{if .Repository}}{{.Owner.Name}}{{else}}Gogs - Go Git Service{{end}}" /> + <meta name="description" content="{{if .Repository}}{{.Repository.Name}}{{if .Repository.Description}} - {{.Repository.Description}}{{end}}{{else}}Gogs (Go Git Service) is a painless self-hosted Git service written in Go{{end}}" /> <meta name="keywords" content="go, git, self-hosted, gogs"> <meta name="referrer" content="no-referrer" /> <meta name="_csrf" content="{{.CsrfToken}}" /> |