templates/front/catalog/model/view/variants/box.html.twig line 1

Open in your IDE?
  1. {% if attr.values %}
  2. <div class="attribute attribute-box" data-attr="{{ attr.code }}">
  3. <div class="labels">
  4. <label>{{ attr.title }} : </label>
  5. <span class="value">{{ attribute(attr.values,0).getDisplayedValue() }}</span>
  6. </div>
  7. <ul>
  8. {% for value in attr.values %}
  9. <li>
  10. <a class="bt {{ loop.first ? 'selected' : '' }}" data-value="{{ value.value }}">{{ value.getDisplayedValue() }}</a>
  11. </li>
  12. {% endfor %}
  13. </ul>
  14. </div>
  15. {% endif %}