123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {%
- set title_classes = [
- label_display == 'visually_hidden' ? 'visually-hidden',
- ]
- %}
- {% if label_hidden %}
- {% if multiple %}
- <div class="d-flex flex-wrap">
- {% for item in items %}
- <div class="md-mx-2 my-4 mx-auto">{{ 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 %}
|