src/StartPlatz/Bundle/AlphaBundle/Resources/views/_widget.feedItems.html.twig line 1

Open in your IDE?
  1.     <div class="row">
  2.         {% if feedItems %}
  3.             {% for item in feedItems %}
  4.                 <div class="col-12">
  5.                     {% set entity = attribute(entities, item.id) %}
  6.                     {% include '@StartPlatzAlphaBundle/FeedItem__widget.twig' %}
  7.                 </div>
  8.             {% endfor %}
  9.         {% endif %}
  10.         {% if rheinlandPitches is defined and rheinlandPitches %}
  11.             {% for rheinlandPitch in rheinlandPitches %}
  12.                 {% if rheinlandPitch.pitchPosition > 0 and rheinlandPitch.pitchPosition < 4 %}
  13.                     <div class="mx-auto" style="max-width:320px">
  14.                         {% include '@StartPlatzAlphaBundle/Startup/_widget.rheinlandPitch.html.twig' %}
  15.                     </div>
  16.                 {% endif %}
  17.             {% endfor %}
  18.         {% endif %}
  19.     </div>