{% extends "base.html" %} {% from 'macros.html' import siteheader %} {% block body %} {{ siteheader(question.site) }}

{{ question.title.text }}

{{ question.upvotes - question.downvotes }}
{% for paragraph in question.text.split("\n") %}

{{ paragraph }}

{% endfor %}

{{ answers|length }} Answers

{% for answer in answers %}
{{ answer.upvotes - answer.downvotes }}
{% for paragraph in answer.text.split("\n") %}

{{ paragraph }}

{% endfor %}
{% endfor %} {% endblock %}