{% load applicationcontent_tags i18n %}
{% fragment request "maincol" %}
{{ entry.title|upper }}
{% trans "posted by" %}
{{ entry.author }}
{% trans "on" %} {{ entry.published_on }},
{% trans "filed under" %}
{% for c in entry.categories.all %}
{{ c|lower }}
{% if not forloop.last %},{% endif %}
{% endfor %}
{% if entry.image %}
{% endif %}
{% for content in entry.content.main %}
{{ content.render }}
{% endfor %}