mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 05:18:28 -04:00
12 lines
392 B
HTML
12 lines
392 B
HTML
{{- $url := printf "https://www.facebook.com/plugins/post/oembed.json/?omitscript=1&url=%s" (.Get "url" | urlize) -}}
|
|
{{- $json := getJSON $url -}}
|
|
|
|
<div class="embed {{ .Name }}">
|
|
{{ $json.html | safeHTML }}
|
|
</div>
|
|
|
|
{{- define "__shortcode_facebook_js" }}
|
|
<div id="fb-root"></div>
|
|
<script async defer src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v5.0"></script>
|
|
{{- end }}
|