{% if widget.content.faq.items is defined and widget.content.faq.items is not empty %}
    {% for item in widget.content.faq.items %}
  1. {{ item.question }} {% if item.children is defined and item.children is not empty %}
      {% for child in item.children %}
    1. {{ child.question }}
    2. {{ child.answer|raw }}

      {% endfor %}
    {% else %}

    {{ item.answer|raw }}

    {% endif %}
  2. {% endfor %}
{% endif %}