{% extends "base.html" %}{% block bodyclass %}question{% endblock %}{% block title %}{{ question["Title"] | safe }}{% endblock %}{% block keywords %}{% for tag in question["Tags"] %}{{ tag }} {% endfor %}{% endblock %}{% block body %}

{{ question["Title"] | safe }}

{% set post = question %}{% include "post.mixin.html" %}
{% if question["answers"] %}

Answers

{% for post in question["answers"] %}
{% include "post.mixin.html" %}
{% endfor %}
{% else %}

No answers

{% endif %}
{% if question["duplicate"] %}{% endif %}{% if question["relateds"] %}{% endif %}
{% endblock %}