If you want to display only the title, there is no need to process the entire JSON Photo model. You can just get one property.
A lower render will be quite necessary.
render: function(event){ var yourOutput={title:myPhoto.get('title')}; var compiled_template = _.template( $("#results-template").html(),yourOutput); this.el.html(compiled_template); }
Your current JSON object is shown below. It is not so difficult, you can get any names, src, coordinates, tags, location without effort.
{ "src": "placeholder.jpg", "title": "an image placeholder", "coordinates": [0,0], "tags": ["untagged"], "location": "home" }
source share