<div class="row">
{% if feedItems %}
{% for item in feedItems %}
<div class="col-12">
{% set entity = attribute(entities, item.id) %}
{% include '@StartPlatzAlphaBundle/FeedItem__widget.twig' %}
</div>
{% endfor %}
{% endif %}
{% if rheinlandPitches is defined and rheinlandPitches %}
{% for rheinlandPitch in rheinlandPitches %}
{% if rheinlandPitch.pitchPosition > 0 and rheinlandPitch.pitchPosition < 4 %}
<div class="mx-auto" style="max-width:320px">
{% include '@StartPlatzAlphaBundle/Startup/_widget.rheinlandPitch.html.twig' %}
</div>
{% endif %}
{% endfor %}
{% endif %}
</div>