{% extends "base.html" %} {% load staticfiles %} {% block content %}

The blog of Example.com

{% for post in post_list %}

{{ post.title }}

{% if post.published %}

{{ post.body }}

{% else %}

Unpublished - Choose an admin tool and publish it.

{% endif %} {% empty %}

No Content Yet!

Choose an admin tool and add content.

{% endfor %}
{% endblock %}