templates/website/faq/faq-section.html.twig line 1

Open in your IDE?
  1. {% if faqs|length > 0 %}
  2.     {% set hasBg = section is defined and section.background %}
  3.     <section id="sec-faq" class="pag-sec{{ hasBg? ' sec-bg-alt' }}">
  4.         <div class="container">
  5.             {% if (layout == 'produto') %}<div class="lateral-products">{% endif %}
  6.                 <header class="tit-sec">
  7.                     <h2>{{ getLanguage('faq', 'home') }}</h2>
  8.                 </header>
  9.                 <div class="perguntas">
  10.                     {% for faq in faqs %}
  11.                         <div class="questao">
  12.                             <div class="pergunta js--abre">
  13.                                 <p>{{ faq.question }}</p>
  14.                                 <span class="material-icons seta">expand_more</span>
  15.                             </div>
  16.                             <div class="js--sub">
  17.                                 <div class="resposta">
  18.                                     {{ faq.answer }}
  19.                                 </div>
  20.                             </div>
  21.                         </div>
  22.                     {% endfor %}
  23.                 </div>
  24.             {% if (layout == 'produtos') %}</div>{% endif %}
  25.         </div>
  26.     </section>
  27. {% endif %}