github.com/shohhei1126/hugo@v0.42.2-0.20180623210752-3d5928889ad7/tpl/tplimpl/embedded/templates/opengraph.html (about) 1 <meta property="og:title" content="{{ .Title }}" /> 2 <meta property="og:description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" /> 3 <meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}" /> 4 <meta property="og:url" content="{{ .Permalink }}" /> 5 {{ with .Params.images }}{{ range first 6 . }} 6 <meta property="og:image" content="{{ . | absURL }}" /> 7 {{ end }}{{ end }} 8 9 {{ if .IsPage }} 10 {{ if not .PublishDate.IsZero }}<meta property="article:published_time" content="{{ .PublishDate.Format "2006-01-02T15:04:05-07:00" | safeHTML }}"/> 11 {{ else if not .Date.IsZero }}<meta property="article:published_time" content="{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}"/>{{ end }} 12 {{ if not .Lastmod.IsZero }}<meta property="article:modified_time" content="{{ .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML }}"/>{{ end }} 13 {{ else }} 14 {{ if not .Date.IsZero }}<meta property="og:updated_time" content="{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}"/>{{ end }} 15 {{ end }}{{ with .Params.audio }} 16 <meta property="og:audio" content="{{ . }}" />{{ end }}{{ with .Params.locale }} 17 <meta property="og:locale" content="{{ . }}" />{{ end }}{{ with .Site.Params.title }} 18 <meta property="og:site_name" content="{{ . }}" />{{ end }}{{ with .Params.videos }} 19 {{ range . }} 20 <meta property="og:video" content="{{ . | absURL }}" /> 21 {{ end }}{{ end }} 22 23 <!-- If it is part of a series, link to related articles --> 24 {{ $permalink := .Permalink }} 25 {{ $siteSeries := .Site.Taxonomies.series }}{{ with .Params.series }} 26 {{ range $name := . }} 27 {{ $series := index $siteSeries $name }} 28 {{ range $page := first 6 $series.Pages }} 29 {{ if ne $page.Permalink $permalink }}<meta property="og:see_also" content="{{ $page.Permalink }}" />{{ end }} 30 {{ end }} 31 {{ end }}{{ end }} 32 33 {{ if .IsPage }} 34 {{ range .Site.Authors }}{{ with .Social.facebook }} 35 <meta property="article:author" content="https://www.facebook.com/{{ . }}" />{{ end }}{{ with .Site.Social.facebook }} 36 <meta property="article:publisher" content="https://www.facebook.com/{{ . }}" />{{ end }} 37 <meta property="article:section" content="{{ .Section }}" /> 38 {{ with .Params.tags }}{{ range first 6 . }} 39 <meta property="article:tag" content="{{ . }}" />{{ end }}{{ end }} 40 {{ end }}{{ end }} 41 42 <!-- Facebook Page Admin ID for Domain Insights --> 43 {{ with .Site.Social.facebook_admin }}<meta property="fb:admins" content="{{ . }}" />{{ end }}