Files
huell/layouts/partials/twitter.html
Nick Karaolidis a75ad7aa95 Draw the rest of the fucking owl
Signed-off-by: Nick Karaolidis <Nick.Karaolidis@sas.com>
2025-08-05 21:40:56 +02:00

24 lines
570 B
HTML

{{- with .Params.image }}
{{ $image := $.Resources.GetMatch . }}
{{ with $image }}
{{ $thumb := .Resize "400x" }}
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="{{ $thumb.Permalink }}" />
{{ end }}
{{ end }}
<meta name="twitter:title" content="{{ .Title }}" />
<meta
name="twitter:description"
content="{{ with .Description }}
{{ . }}
{{ else }}
{{ if .IsPage }}
{{ .Summary }}
{{ else }}
{{ with .Site.Params.description }}{{ . }}{{ end }}
{{ end }}
{{ end -}}"
/>