{% extends "posts/show/layout.html" %} {% load static %} {% load posts %} {% load text_filters %} {% block post %}
{% block post_upvote %}
{% endblock %} {% block post_header %}
{% block post_title %}

{{ post.title | rutypography }}

{% endblock %} {% include "posts/widgets/publicity_preferences.html" with post=post %} {% if post.label %} {% include "posts/widgets/label.html" with label=post.label %} {% endif %} {% if post.deleted_at %} {% elif not post.is_visible %} {% endif %}
{% if post.metadata.badges %} {% include "badges/widgets/badges.html" with badges=post.metadata.badges %} {% endif %}
{% endblock %} {% block post_text %}
{% render_post post %}
{% endblock %} {% block post_footer %} {% endblock %}
{% if me and me.is_active_membership and collectible_tag %} {% include "posts/widgets/collectible_tag.html" %} {% endif %}
{% endblock %}