I am running through a loop in Twig:
{% for item in items %}
<div class="description">
Title: {{ item.name }}<br />
Price: {{ item.price }}
</div>
{% else %}
<p>...</p>
{% endfor %}
If item.price is empty, it throws me an exception. Can't I just simply force Twig to give out "nothing" when a certain value is empty?
Or do I always need to {% if item.x %}{{ item.x }}{% endif %} for all values?