website-theme/layouts/shortcodes/displayToots.html

9 lines
172 B
HTML
Raw Normal View History

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