Welcome to mirror list, hosted at ThFree Co, Russian Federation.

twitter.html « provider « opengraph « head « partials « layouts - github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0495020a0b881a47306d13026d4f6044d6ed3073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{- with .Site.Params.opengraph.twitter.site -}}
    <meta name="twitter:site" content="{{ . }}">
{{- end -}}

<meta name="twitter:title" content="{{ partial "data/title" . }}">
<meta name="twitter:description" content="{{ chomp (partial "data/description" . | plainify ) }}">

{{- $image := partial "helper/image" (dict "Context" . "Type" "opengraph") -}}
{{- if $image.exists -}}
	<meta name="twitter:card" content="{{ .Site.Params.opengraph.twitter.card }}">
	<meta name="twitter:image" content='{{ absURL $image.permalink }}' />
{{- end -}}