{% for post in posts %}

{{ post.title }}

{% if post.subtitle %}

{{ post.subtitle }}

{% endif %} {% if post.featured_image %} {{ post.title }} {% endif %} {% if post.description %}

{{ post.description }}

{% endif %}

{{ post.date_created }}

{% include "blogit/includes/categories.html" with categories=post.categories %} {% include "blogit/includes/tags.html" with tags=post.get_tags %}
{% endfor %}