25 lines
1.1 KiB
HTML
25 lines
1.1 KiB
HTML
<meta property="og:title" content="{{ .Title }}" />
|
|
{{ if eq .Section "reviews" }}
|
|
<meta property="og:type" content="article" />
|
|
<meta property="og:description" content={{.Params.quick_look}}>
|
|
{{ else }}
|
|
{{ if .Params.description }}
|
|
<meta property="og:description" content="{{.Params.description}}">
|
|
<meta name="description" content="{{.Params.description}}">
|
|
{{ end }}
|
|
<meta property="og:type" content="website" />
|
|
{{ end }}
|
|
<meta property="og:url" content="{{ .Permalink }}" />
|
|
{{ if .Params.image }}
|
|
<meta property="og:image" content="{{.Params.image}}" />
|
|
<meta property="twitter:card" content="summary">
|
|
{{end}}
|
|
{{ if eq .Section "reviews" }}
|
|
<meta property="og:image:alt" content="Movie Poster for {{ .Title }}">
|
|
<meta property="og:article:author" content="Campbell Alden">
|
|
<meta property="og:article:published_time" content="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}">
|
|
<meta property="twitter:label1" content="Rating">
|
|
<meta property="twitter:data1" content="{{.Params.rating}}/5">
|
|
<meta property="twitter:label2" content="Published">
|
|
<meta property="twitter:data2" content="{{ .Date | time.Format ":date_long" }}">
|
|
{{end}}
|