{% extends "blogging/base.html" %} {% block meta %} {% include 'blogging/metatags.html' %} {% endblock meta %} {% block title %} {{post.title}} {% endblock title %} {% block main %} {% if meta.is_user_blogger %}
{% if post.editable %}  Delete       Edit      {% endif %}  New
{% endif %}

{{ post.title }}

Posted by {{post.user_name}} on {{post.post_date.strftime('%d %b, %Y')}}

{{post.rendered_text | safe}}
{% if post.tags %}    {% for tag in post.tags %} {{ tag }}    {% endfor %}
{% endif %}
{% include "blogging/social_links.html" %}
{% include "blogging/disqus.html" %} {% endblock main %}