{{ $outbox := dict }}
    {{ with resources.GetRemote "https://bookwyrm.social/user/5ika/outbox?page=1" }}
        {{ with .Err }}
            {{ errorf "%s" . }}
        {{ else }}
            {{ $outbox = . | transform.Unmarshal }}
            {{ with index $outbox.orderedItems 0 }}
                
                    {{ with index .attachment 0 }}
                        {{ .name }}
                    {{ end }}
                
            {{ end }}
        {{ end }}
    {{ end }}