templates/articles/blocks/show-public-cible.html.twig line 1

Open in your IDE?
  1. {% if content is defined and content is not empty and content|length > 0 and content|join(',') != "Autre" %}
  2.     <div class="mb-1em">
  3.         {% if title is defined and title is not empty and title|length > 0 %}
  4.             <div class="fw600">{{title|raw}}</div>
  5.         {% endif %}
  6.         <ul class="experience-ul">
  7.             {% set sortedValues = order_public_cible(content) %}
  8.             {% for item in sortedValues %}
  9.                 {% if "Autre" not in item %}
  10.                     <li>{{item}}</li>
  11.                 {% endif %}
  12.             {% endfor %}
  13.         </ul>
  14.     </div>
  15. {% endif %}