mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 14:16:20 -04:00
11 lines
367 B
HTML
11 lines
367 B
HTML
{{- $url := printf "https://publish.twitter.com/oembed?lang=en&omit_script=true&dnt=true&align=center&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 }}
|