{% extends 'base.html' %} {% block title %}{{ trimContent(question.content, cfg.trimContentAfter) }} - {{ trimContent(answer.content, cfg.trimContentAfter) }}{% endblock %} {% block additionalHeadItems %} {% endblock %} {% block content %}
{#

{% if question.from_who %} {{ question.from_who | render_markdown }} {% else %} {{ cfg.anonName }} {% endif %}

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

{% include 'snippets/q-card-text.html' %}
{% if answer.cw %}
{{ answer.cw | render_markdown }}
{{ answer.content | render_markdown }}
{% else %}
{{ answer.content | render_markdown }}
{% endif %}
#} {% with answers=answer %} {% include 'snippets/layout/question_card.html' %} {% endwith %}
{% endblock %} {% block scripts %} {% endblock %}