{% extends "cms-default-theme/base.html" %} {% block content %} {% for post in pagination.posts %}

{{ post.name.content }}

{% if post.isVisible %}

{{ post.creationDate|formatDate("MMMM d, Y, H:m") }} by {{post.createdBy.name}}

{{post.excerpt.content | raw}}


{{post.body.content | raw}}

{% else %}

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

{% endif %}
{% endfor %} {% include "cms-default-theme/pagination.html" %} {% endblock content %}