{% extends "cms-default-theme/base.html" %} {% block content %}

{{ post.name.content }}

{% if post.isVisible %}

{{ post.creationDate|formatDate("MMMM d, Y, H:m") }} by {{post.createdBy.username}} {% for cat in post.categoriesSet %} {{cat.name.content}} {% endfor %}

{{post.excerpt.content | raw}}


{{post.body.content | raw}}

{% if post.attachements is not empty %}

Attachments

{% endif %} {% else %} {% if request.user.isAuthenticated %}

{{ i18n('CmsExceptionResources', 'label.autenticated.private.post') }}

{% else %}

{{ i18n('CmsExceptionResources', 'label.unautenticated.private.post') }} : {{ post.visibilityGroup }}

Login

{% endif %} {% endif %} {% if site.canPost %}

Edit this post. {% if site.isAdmin %}Admin this site.{% endif %}

{% endif %}
{% endblock content %}