I have a .json data object that looks like this:
{ images: [ { photo: image.jpg } {something : else} ] }
I want to access dust texturing on an element image.jpg. Is there an easy way to select only the first dictionary in this array without scrolling? I would prefer to avoid the loop in my template because it will display a section that expects style="background-image: url({photo});"several times.
source
share