{% extends "blogit/base.html" %} {% block content %} {% 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_published }}

{% if post.category %}

Category: {{ post.category }}

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