vendor/shopware/storefront/Resources/views/storefront/component/product/feature/list.html.twig line 1

Open in your IDE?
  1. {% block component_product_feature_list_container %}
  2.     <div class="product-feature-list">
  3.         {% block component_product_feature_list %}
  4.             <ul class="product-feature-list-list">
  5.                 {% for feature in features %}
  6.                     {% sw_include '@Storefront/storefront/component/product/feature/item.html.twig' %}
  7.                 {% endfor %}
  8.             </ul>
  9.         {% endblock %}
  10.     </div>
  11. {% endblock %}