templates/articles/blocks/show-multiple-select-field.html.twig line 1

Open in your IDE?
  1. {% if content is defined and content is not empty and content|length > 0 %}
  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 = content|sort %}
  8.             {% for item in sortedValues %}
  9.                 <li>{{item}}</li>
  10.             {% endfor %}
  11.         </ul>
  12.     </div>
  13. {% endif %}