{% extends 'base.html' %} {% load typogrify_tags %} {% load comments %} {% block pagetitle %}Luxagraf | {{object.title}}{% endblock %} {% block metadescription %}{{object.meta_description}}{% endblock %} {%block htmlclass%}class="detail"{%endblock%} {%block bodyid%}id="{{object.title|slugify}}"{%endblock%} {% block primary %}

{{object.title}}

{%if object.sub_title %}

{{object.sub_title}}

{%endif%}
{{object.body_html|safe|smartypants|widont}}
{% if object.enable_comments %} {% get_comment_count for object as comment_count %} {%if comment_count > 0 %}

{{comment_count}} Comment{{ comment_count|pluralize }}

{% render_comment_list for object %} {%endif%} {% render_comment_form for object %} {%endif%}
{% endblock %} {% block js %} {% endblock %}