website-theme/layouts/shortcodes/displayToots.html

9 lines
172 B
HTML
Raw Normal View History

2022-05-03 01:10:03 -04:00
{{ $url := .Get 0 }}
{{ $dataJ := getJSON $url }}
2022-05-05 13:28:41 -04:00
{{ range sort $dataJ "created_at" "desc" }}
2022-06-02 20:20:32 -04:00
{{ .Scratch.Set "toot" $dataJ }}
{{ partial "toot.html" . }}
{{ end }}