custom/plugins/AcrisFaqCS/src/Resources/views/storefront/element/cms-element-acris-faq.html.twig line 1

Open in your IDE?
  1. {% block element_acris_faq %}
  2.     <div class="acris-faq" itemscope itemtype="https://schema.org/FAQPage">
  3.         {% for item in element.data.faq.elements %}
  4.             {% for faqs in item.faqs %}
  5.                 {% sw_include '@Storefront/storefront/component/faq/acris-faq.html.twig' with { 'faqs': faqs } %}
  6.             {% endfor %}
  7.         {% endfor %}
  8.     </div>
  9. {% endblock %}