{% extends "template.html" %} {% load staticfiles %} {% block subtitle %}{{ art.title }}{% endblock %} {% block content %}

{{ art.title }}

{% if art.image %}
{{ art.title | escape }}
{% endif %}

{{ art.content }}

Comments

{% for comment in comments %}

{{ comment.user.username }}: {{ comment.content }}

{% empty %}

No comments yet!

{% endfor %} {% if commentForm %}
{% endif %}
{% endblock %}