hugo/tpl/tplimpl/embedded/templates/shortcodes/twitter.html

10 lines
369 B
HTML
Raw Normal View History

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