So i have my handlebars template
<ul>
{{#each familia}}
<li class="listItem">
<div class="items" style="background-image:url(img/{{attributes.imagen}}">
<div class="info">
<h3>{{attributes.nombre}}</h3>
</div>
</div>
</li>
{{/each}}
</ul>
when compiles it puts the url well, but the background-image not shows the image, plus in the chrome console it makes me a invalid property value... what am i doing wrong???