Added some Twiggy goodness

This commit is contained in:
2022-01-13 14:11:43 +00:00
parent e581a2d62e
commit dfce94d9e3
8 changed files with 531 additions and 3 deletions

View File

@ -0,0 +1,16 @@
{% 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 %}