Files
hugo-theme-minos/layouts/partials/og.html
2019-11-29 23:04:51 +08:00

8 lines
547 B
HTML

<meta property="og:title" content="{{ if .Params.ogtitle }}{{ .Params.ogtitle }}{{ else }}{{ .Title }}{{ end }}" />
<meta property="og:description" content="{{ if .Params.ogdescription }}{{ .Params.ogdescription }}{{ else }}{{ .Site.Params.Description }}{{ end }}" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="{{ .Lang }}" />
<meta property="og:url" content="{{ .Permalink }}" />
{{ if .Params.ogimage }}
<meta property="og:image" content="{{ .Params.ogimage }}" />
{{ end }}