templates/layouts/layouts_front/nav/flash_info.html.twig line 1

Open in your IDE?
  1. {% if flashInfo is defined  and flashInfo|length > 0 %}
  2.     {% for flash in flashInfo %}
  3.         {% if flash.flashEnligne == 1 %}
  4.         {% endif %}
  5.     {% endfor %}
  6.     <ul id="flux" data-pos="1" data-nbFlux="{{ flashInfo|length }}">
  7.         {% set cmptFlux = 0 %}
  8.         {% for flash in flashInfo %}
  9.             {% set cmptFlux = cmptFlux + 1 %}
  10.             <li id="flux_{{ cmptFlux }}" class="{% if cmptFlux == 1 %}current{% endif %}">
  11.                 {% if flash.flashUrl != "" and flash.flashUrl != null %}<a href="{{ flash.flashUrl }}" target="_blank"
  12.                                                                            rel="noreferrer">{% endif %}
  13.                     <p>{{ flash.flashMessage }}</p>
  14.                     {% if flash.flashUrl != "" and flash.flashUrl != null %}</a>{% endif %}
  15.             </li>
  16.         {% endfor %}
  17.     </ul>
  18. {% endif %}