{% if multipleAnswers %} {% for answer in answers %}

{% if question.from_who %} {{ render_markdown(question.from_who, fromWho=True) }} {% else %} {{ cfg.anonName }} {% endif %}

{{ formatRelativeTime(str(question.creation_date)) }}

{% with question=question %} {% include 'snippets/q-card-text.html' %} {% endwith %}
{% if answer.cw %}
{{ answer.cw | render_markdown }}
{{ answer.content | render_markdown }}
{% else %} {{ answer.content | render_markdown }} {% endif %}
{% endfor %} {% else %}

{% if question.from_who %} {{ render_markdown(question.from_who, fromWho=True) }} {% else %} {{ cfg.anonName }} {% endif %}

{{ formatRelativeTime(str(question.creation_date)) }}

{% with question=question %} {% include 'snippets/q-card-text.html' %} {% endwith %}
{% if answer.cw %}
{{ answer.cw | render_markdown }}
{{ answer.content | render_markdown }}
{% else %} {{ answer.content | render_markdown }} {% endif %}
{% endif %}