2018-05-24 05:24:38 -04:00
|
|
|
{{- $pc := .Page.Site.Config.Privacy.Twitter -}}
|
2018-05-20 14:00:29 -04:00
|
|
|
{{- if not $pc.Disable -}}
|
2018-05-30 16:42:32 -04:00
|
|
|
{{- if $pc.Simple -}}
|
|
|
|
{{ template "_internal/shortcodes/twitter_simple.html" . }}
|
|
|
|
{{- else -}}
|
2019-09-29 08:51:51 -04:00
|
|
|
{{- $url := printf "https://api.twitter.com/1/statuses/oembed.json?id=%v&dnt=%t" (index .Params 0) $pc.EnableDNT -}}
|
2018-05-24 07:03:23 -04:00
|
|
|
{{- $json := getJSON $url -}}
|
2018-05-24 06:25:52 -04:00
|
|
|
{{ $json.html | safeHTML }}
|
2018-05-30 16:42:32 -04:00
|
|
|
{{- end -}}
|
2018-05-20 14:00:29 -04:00
|
|
|
{{- end -}}
|