{% extends "base.html" %} {% block js_media %} {% include "comments/media-js.html" %} {% endblock %} {% block media %} {% include "comments/media-css.html" %} {% endblock %} {% block header %} {% if perms.judge.change_blogpost %}
[{{ _('Edit') }}]
{% endif %} {% endblock %} {% block body %}
{% 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 %}
{% cache 86400 'post_content' post.id MATH_ENGINE %} {{ post.content|markdown('blog', MATH_ENGINE)|reference|str|safe}} {% endcache %}

{{ post_to_gplus(request, post, '') }} {{ post_to_facebook(request, post, '') }} {{ post_to_twitter(request, SITE_NAME + ':', post, '') }} {% include "comments/list.html" %} {% endblock %} {% block bodyend %} {{ super() }} {% if REQUIRE_JAX %} {% include "mathjax-load.html" %} {% endif %} {% include "comments/math.html" %} {% endblock %}