{% extends "blognajd/base.html" %} {% load comments tagging_tags inlines %} {% block meta-description %}{{ object.abstract_markup|render_inlines|striptags }}{% endblock %} {% block title %}{{ block.super }} » {{ object.title }}{% endblock %} {% block extracss %} {% endblock %} {% block extrajs %} {% endblock %} {% block nav-sitename %}{{ settings.BLOGNAJD_SITE_SHORT_NAME }}{% endblock %} {% block class-nav-blog %}active{% endblock %} {% block jumbotron %} {% tags_for_object object as tag_list %}
{% if object.status == 1 %}
draft
{% endif %}

{{ object.title }}

{{ object.pub_date|date:"l, F j, Y" }}
{% if tag_list %}
{% for tag in tag_list %}{{ tag }}{% if not forloop.last %} {% endif %}{% endfor %}
{% endif %}
{% endblock %} {% block body %} {% get_comment_count for object as comment_count %}
{{ object.body_markup|render_inlines|safe }}
{% if object.status > 1 and not object.in_the_future %} {% include "blognajd/includes/comments.html" with comment_count=comment_count %} {% endif %} {% endblock %}