{% for batch_items in items | batch(batch_size) %}
{% for item in batch_items %}
{% if "name" in item.content and item.content["titles"] %}

{{ item.name }}

{% endif %} {{ item.render() }}
{% endfor %}
{% endfor %}