{% if __SELF__.posts.count %}
{% for post in __SELF__.posts %}
{% if post.featured_images.count %}
{{ post.featured_images[0].description }}
{% endif %}

{{ post.title }}

{{ post.content|raw }} {% if post.excerpt %}
{{ post.excerpt }}
{% endif %}
{% if __SELF__.authorPage %} {% else%}{% endif %}{{ post.user.fullname }}{% if __SELF__.authorPage %}{% else %}{% endif %} {{ post.category.name }} {% if post.tags.count %} {% for tag in post.tags %} {{ tag.name }}{% if not loop.last %}, {% endif %} {% endfor %} {% endif %} {{ post.comments.count }} {% if user %} {% endif %}
{% endfor %} {% if pagination > 0 %} {{ __SELF__.posts.links|raw }} {% endif %}
{% else %}

{{ __SELF__.noPostsMessage }}

{% endif %}