mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 14:28:25 -04:00
11 lines
354 B
HTML
11 lines
354 B
HTML
{{- $url := printf "https://publish.twitter.com/oembed?lang=en&omit_script=true&dnt=true&url=%s" (index .Params 0 | safeURL) -}}
|
|
{{- $json := getJSON $url -}}
|
|
|
|
<div class="embed {{ .Name }}">
|
|
{{ $json.html | safeHTML }}
|
|
</div>
|
|
|
|
{{- define "__shortcode_twitter_js" }}
|
|
<script async defer src="https://platform.twitter.com/widgets.js"></script>
|
|
{{- end }}
|