{% extends "base.html" %} {% block js_media %} {% include "comments/media-js.html" %} {% include "actionbar/media-js.html" %} {% endblock %} {% block media %} {% include "comments/media-css.html" %} {% endblock %} {% block title_row %} {% endblock %} {% block title_ruler %} {% endblock %} {% block body %}
{{ title }}
{% with authors=post.authors.all() %} {% if authors %} {% endif %} {% endwith %} {% trans time=post.publish_on|date(_("N j, Y, g:i a")) %} posted on {{ time }}{% endtrans %} {% if post.is_editable_by(request.user) %} [{{ _('Edit') }}] {% endif %} {% if valid_user_to_show_edit %} {% for org in valid_org_to_show_edit %} [{{ _('Edit in') }} {{org.slug}}] {% endfor %} {% endif %}
{% cache 86400 'post_content' post.id MATH_ENGINE %} {{ post.content|markdown|reference|str|safe}} {% endcache %}
{% include "actionbar/list.html" %}

{% include "comments/list.html" %} {% endblock %} {% block bodyend %} {{ super() }} {% if REQUIRE_JAX %} {% include "mathjax-load.html" %} {% endif %} {% include "comments/math.html" %} {% endblock %}