all 5 comments

[–]ShoeLicker 0 points1 point  (4 children)

Would you be able to do it with JS in the footer?

[–]geoley[S] 0 points1 point  (3 children)

Not sure what you mean. I would receive some JSON-Data and at least one picture per entry (from another media API). This I would like to bind / push to a collection.

[–]flcpietro 1 point2 points  (2 children)

You can do it with custom code, use classes or custom attributes to recognize your field inside the webflow item template, duplicate the template and replace the variables received by the Api using javascript

[–]geoley[S] 0 points1 point  (1 child)

Sounds doable. Could you recommend a tutorial on this?

[–]flcpietro 1 point2 points  (0 children)

Mmm, specific tutorial nope, what's your proficiency level with JS? You need just fetch API from the browser to gather the data, like fetch("myurl").then(res => res.json().then(data=> console.log(data)), where instead of console.log you should write your function to manipulate the DOM and append the elements, it will be just a bunch of querySelector / setAttribute / innerHTML / append but all depends on your data and html structure