37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
<meta property="og:site_name"
|
|
content='{{ .Site.Title | default "Ficurinia" }}' />
|
|
{{ if .IsPage }}
|
|
<meta property="og:title" content="{{ .Title }}" />
|
|
<meta property="og:type" content="article" />
|
|
|
|
<meta
|
|
property="article:author" content="{{ .Site.Params.Author }}" />
|
|
<meta
|
|
property="article:published_time"
|
|
content='{{ .Date.Format "2006-01-02T15:04:05Z-0700" }}' />
|
|
{{ if .Params.tags }}
|
|
{{ range sort .Params.tags }}
|
|
<meta property="article:tag" content="{{ . }}" />
|
|
{{ end }}
|
|
{{ end }}
|
|
<meta property="og:url" content="{{ .Permalink }}" />
|
|
<meta property="og:image"
|
|
content='{{ if .Params.Image }}{{ .Params.Image | absURL }}
|
|
{{ else }}{{ .Site.Params.Logo | default "/img/icon.svg" | absURL }}
|
|
{{ end }}' />
|
|
{{ if .Params.description }}
|
|
<meta property="og:description" content="{{ .Params.description }}" />
|
|
{{ else }}
|
|
<meta property="og:description" content="{{ substr .Summary 20 }}" />
|
|
{{ end }}
|
|
{{ else }}
|
|
<meta property="og:title"
|
|
content='{{ .Site.Title | default "Ficurinia" }}' />
|
|
{{ if .Site.Params.description }}
|
|
<meta property="og:description" content="{{ .Site.Params.description }}" />
|
|
{{ end }}
|
|
<meta property="og:type" content="blog" />
|
|
<meta property="og:image"
|
|
content='{{ .Site.Params.Logo | default "/img/icon.svg" | absURL }}' />
|
|
{{ end }}
|