diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2023-02-27 00:09:28 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2023-02-27 00:09:28 +0000 |
commit | 96090364a7ebcfcf35f924cdd9f24f6898257e6a (patch) | |
tree | 4cb5ae194037af16ced3845078025eb8394088d1 | |
parent | 7c53f89ccdd92e308d14d069e2e070f7a1c2da26 (diff) | |
download | boymoder.blog-96090364a7ebcfcf35f924cdd9f24f6898257e6a.tar.gz boymoder.blog-96090364a7ebcfcf35f924cdd9f24f6898257e6a.zip |
Added <p> tags on q&a page
-rw-r--r-- | templates/questions.html.j2 | 4 |
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> |