2022-01-13 14:11:43 +00:00

16 lines
316 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Question: {{ question }}{% endblock %}
{% block body %}
<h1>{{ question }}</h1>
<div>
Eventually, we'll print the full question here!
</div>
<h2>Answers</h2>
<ul>
{% for answer in answers %}
<li>{{ answer }}</li>
{% endfor %}
</ul>
{% endblock %}