templates/web/customer/product/details/parts/attribute.twig line 1

Open in your IDE?
  1. {##
  2.  # Attribute
  3.  #}
  4. {% if this.getAttributeGroup() %}
  5. <li><div class="head-h3"><span class="title-text">{{ this.getTitle() }}</span><span class="line"></span></div>
  6.   <ul>
  7. {% endif %}
  8. {% for a in this.getAttrList() %}
  9.   <li>
  10.     <div><strong>{{ a.name }}</strong></div>
  11.     <span class="{{ a.class }}">{{ a.value|nl2br }}</span>
  12.   </li>
  13. {% endfor %}
  14. {% if this.getAttributeGroup() %}
  15.   </ul>
  16. </li>
  17. {% endif %}