mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-19 03:35:30 -04:00
https://developer.twitter.com/en/docs/twitter-for-websites/embedded-tweets/overview
11 lines
348 B
HTML
11 lines
348 B
HTML
{{- $url := printf "https://api.twitter.com/1/statuses/oembed.json?id=%v&dnt=1&omit_script=1&align=center" (index .Params 0) -}}
|
|
{{- $json := getJSON $url -}}
|
|
|
|
<div class="embed tweet">
|
|
{{ $json.html | safeHTML }}
|
|
</div>
|
|
|
|
{{- define "__shortcode_twitter_js" }}
|
|
<script async defer src="https://platform.twitter.com/widgets.js"></script>
|
|
{{- end }}
|