diff options
Diffstat (limited to 'static/website/templates/recent_questions.html')
-rw-r--r-- | static/website/templates/recent_questions.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/static/website/templates/recent_questions.html b/static/website/templates/recent_questions.html new file mode 100644 index 0000000..1a4cc44 --- /dev/null +++ b/static/website/templates/recent_questions.html @@ -0,0 +1,5 @@ +<ul> +{% for question in recent_questions %} + <li>{{question.title}}</li> +{% endfor %} +</ul> |