templates/Blocks/FAQ/Frontend/renderFrontend.html.twig line 1

Open in your IDE?
  1. {% if data.questions is not empty %}
  2.     <section class="block block-faq">
  3.         <h2>{{ data.name }}</h2>
  4.         {% set index = 0 %}
  5.         {% for someQuestion in data.questions %}
  6.             {% set index = index + 1 %}
  7.             <div class="border-top  p-2">
  8.                 <span class="collapsed">
  9.                     <a style="color: #ea5211;" href="#" data-toggle="collapse" data-target="#faq_{{ block.identifier }}_{{ index }}">
  10.                         <strong>Q.</strong> {{ someQuestion.question }}
  11.                     </a>
  12.                 </span><br/>
  13.                 <div id="faq_{{ block.identifier }}_{{ index }}" class="collapse">
  14.                     <span><strong>A.</strong> {{ someQuestion.answer|raw }}</span>
  15.                 </div>
  16.             </div>
  17.         {% endfor %}
  18.     </section>
  19. {% endif %}