aboutsummaryrefslogtreecommitdiffstats
path: root/templates/questions.html.j2
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2023-03-21 14:11:28 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2023-03-21 14:11:28 +0000
commit208e6eb70f0e399b84380c2112dc312c929cf7ea (patch)
tree0903e5a3ac54050d3cc0f90bda3195b4e3a83c49 /templates/questions.html.j2
parent7c7082fbc6bbaeb48aded3e2a598130a1c0b343f (diff)
parentcfc2bfbec443ea24f4af0027a077267771b0698f (diff)
downloadboymoder.blog-208e6eb70f0e399b84380c2112dc312c929cf7ea.tar.gz
boymoder.blog-208e6eb70f0e399b84380c2112dc312c929cf7ea.zip
Merge branch 'master' of git.eda.gay:eda.gay
Diffstat (limited to 'templates/questions.html.j2')
-rw-r--r--templates/questions.html.j213
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/questions.html.j2 b/templates/questions.html.j2
new file mode 100644
index 0000000..2d0eaf2
--- /dev/null
+++ b/templates/questions.html.j2
@@ -0,0 +1,13 @@
+{% extends "template.html.j2" %}
+{% block content %}
+ <h4><a href="https://curiouscat.live/{{ curiouscat_username }}">ask a question!</a></h4>
+ <dl>
+ {% for id_, link, dt, question, answer in qnas %}
+ <dt><a href="{{ link }}">{{ dt.isoformat() }}</a></dt>
+ <dd>
+ <dt class="question"><p>{{ question }}</p></dt>
+ <dd class="answer"><p>{{ answer }}</p></dd>
+ </dd>
+ {% endfor %}
+ </dl>
+{% endblock %}