aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2023-02-27 00:09:28 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2023-02-27 00:09:28 +0000
commit96090364a7ebcfcf35f924cdd9f24f6898257e6a (patch)
tree4cb5ae194037af16ced3845078025eb8394088d1 /templates
parent7c53f89ccdd92e308d14d069e2e070f7a1c2da26 (diff)
downloadeda.gay-96090364a7ebcfcf35f924cdd9f24f6898257e6a.tar.gz
eda.gay-96090364a7ebcfcf35f924cdd9f24f6898257e6a.zip
Added <p> tags on q&a page
Diffstat (limited to 'templates')
-rw-r--r--templates/questions.html.j24
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/questions.html.j2 b/templates/questions.html.j2
index fd53120..6f9c1eb 100644
--- a/templates/questions.html.j2
+++ b/templates/questions.html.j2
@@ -5,8 +5,8 @@
{% for id_, link, dt, question, answer in qnas %}
<dt><a href="{{ link }}">{{ dt.isoformat() }}</a></dt>
<dd>
- <dt class="question">{{ question }}</dt>
- <dd class="answer">{{ answer }}</dd>
+ <dt class="question"><p>{{ question }}</p></dt>
+ <dd class="answer"><p>{{ answer }}</p></dd>
</dd>
{% endfor %}
</dl>