{% extends "radpress/base.html" %} {% load trans from i18n %} {% load url from future %} {% load thumbnail %} {% load radpress_datetime from radpress_tags %} {% block title %}{{ object.title }}{% endblock %} {% block content %}
{% radpress_datetime object.updated_at %} {% if object.tags.count %}
{% for tag in object.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
{% if user.is_superuser %} {% endif %}

{{ object.title }}

{% if object.cover_image %} {% endif %}
{{ object.content_body|safe }}
{% if RADPRESS_DISQUS %}
comments powered by Disqus {% endif %}
{% endblock %}