seo_schema.html 1.4 KB

1234567891011121314151617181920
  1. <meta name="description" content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}"/>
  2. <meta name="robots" content="noodp"/>
  3. <link rel="canonical" href="{{ .Permalink }}" />
  4. <!-- Twitter Card -->
  5. <meta name="twitter:card" content="summary" />
  6. <meta name="twitter:description" content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}" />
  7. <meta name="twitter:title" content="{{ .Title }}{{ if .IsHome }} - {{ .Site.Params.Tagline }}{{ else }} - {{ .Site.Title }}{{ end }}" />
  8. <meta name="twitter:site" content="{{ .Site.Params.twitter }}" />
  9. <meta name="twitter:creator" content="{{ .Site.Params.twitter }}" />
  10. <!-- OG data -->
  11. <meta property="og:locale" content="en_US" />
  12. <meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}" />
  13. <meta content="{{ .Title }}{{ if .IsHome }} - {{ .Site.Params.Tagline }}{{ else }} - {{ .Site.Title }}{{ end }}" property="og:title">
  14. <meta content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}" property="og:description">
  15. <meta property="og:url" content="{{ .Permalink }}" />
  16. <meta property="og:site_name" content="{{ .Site.Title }}" />
  17. {{ range .Params.categories }}<meta property="article:section" content="{{ . }}" />{{ end }}
  18. {{ if isset .Params "date" }}<meta property="article:published_time" content="{{ time .Date }}" />{{ end }}