{% if data.questions is not empty %}
<section class="block block-faq">
<h2>{{ data.name }}</h2>
{% set index = 0 %}
{% for someQuestion in data.questions %}
{% set index = index + 1 %}
<div class="border-top p-2">
<span class="collapsed">
<a style="color: #ea5211;" href="#" data-toggle="collapse" data-target="#faq_{{ block.identifier }}_{{ index }}">
<strong>Q.</strong> {{ someQuestion.question }}
</a>
</span><br/>
<div id="faq_{{ block.identifier }}_{{ index }}" class="collapse">
<span><strong>A.</strong> {{ someQuestion.answer|raw }}</span>
</div>
</div>
{% endfor %}
</section>
{% endif %}