custom/plugins/AcrisFaqCS/src/Resources/views/storefront/component/product/listing.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/listing.html.twig' %}
  2. {% block product_listing %}
  3. {{ parent() }}
  4. {% block product_listing_acris_faq %}
  5. {% if page.extensions.acrisFaq|length > 0 %}
  6. <div class="acris-faq" itemscope itemtype="https://schema.org/FAQPage">
  7. {% for item in page.extensions.acrisFaq %}
  8. {% for faqs in item.faqs %}
  9. {% sw_include '@Storefront/storefront/component/faq/acris-faq.html.twig' with { 'faqs': faqs } %}
  10. {% endfor %}
  11. {% endfor %}
  12. </div>
  13. {% endif %}
  14. {% endblock %}
  15. {% endblock %}