{% if content.state == "private" %}private{%endif%} Written by
{{content.owner.get_full_name|default:content.owner}} on {{content.publication}}
{% with categories=content.categories.all %}
{% if categories %}
in
{% for cat in categories %}
{{cat}}{% if not forloop.last %},{% endif %}
{% endfor %}
{% endif %}
{% endwith %}
{{content.body|safe}}
{% if content.state == "private" %}private{%endif%}
Last updated {{content.modified}}
{% with categories=content.categories.all %}
{% if categories %}
| filed under
{% for cat in categories %}
{{cat}}{% if not forloop.last %},{% endif %}
{% endfor %}
{% endif %}
{% endwith %}
{% with tags=content.tags.all %}
{% if tags %}
|
{% for tag in tags %}
{{tag}}
{% endfor %}
{% endif %}
{% endwith %}