{% extends 'base.html.twig' %} {% block body %}

{{ challenge|replace({'.yaml': '', '_': ' '})|capitalize }}

{% for question in questions %}

{{ loop.index }}. {{ question.question }}

{% for answer in question.answers %}
{% endfor %}
{% endfor %}
{% endblock %}