Browse Source

Added Open Graph Meta tags to head template (#3664)

pull/3809/merge
Simeon Radivoev 8 years ago committed by 无闻
parent
commit
4a1dc29e23
  1. 7
      templates/base/head.tmpl

7
templates/base/head.tmpl

@ -14,6 +14,13 @@
<meta name="go-source" content="{{.GoGetImport}} _ {{.GoDocDirectory}} {{.GoDocFile}}">
{{end}}
<!-- Open Graph Tags -->
<meta property="og:image" content="{{AppUrl}}img/gogs-lg.png" />
<meta property="og:image" content="{{AppUrl}}img/gogs-large-resize.png" />
<meta property="og:title" content="{{if .Title}}{{.Title}} - {{end}}{{AppName}}">
<meta property="og:site_name" content="{{AppName}}">
<meta property="og: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}}">
<link rel="shortcut icon" href="{{AppSubUrl}}/img/favicon.png" />
<script src="{{AppSubUrl}}/js/jquery-1.11.3.min.js"></script>

Loading…
Cancel
Save