12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {%
- set title_classes = [
- label_display == 'visually_hidden' ? 'visually-hidden',
- ]
- %}
- {% if label_hidden %}
- {% if multiple %}
- {% if element[0]['#view_mode'] == 'thumbnails_participants' %}
- <div{{ attributes }} class="__slide">
- {% else %}
- <div>
- {% endif %}
- {% for item in items %}
- <div{{ item.attributes }}>{{ item.content }}</div>
- {% endfor %}
- </div>
- {% else %}
- {% for item in items %}
- <div{{ attributes }}>{{ item.content }}</div>
- {% endfor %}
- {% endif %}
- {% else %}
- <div{{ attributes }}>
- <div{{ title_attributes.addClass(title_classes) }}>{{ label }}</div>
- {% if multiple %}
- <div>
- {% endif %}
- {% for item in items %}
- <div{{ item.attributes }}>{{ item.content }}</div>
- {% endfor %}
- {% if multiple %}
- </div>
- {% endif %}
- </div>
- {% endif %}
|