{% extends 'blogs/base.html' %} {% block page_header %}

{{ blog.name }}

{% endblock page_header %} {% block content %}

Create a new post

{% for post in posts %}

{{ post.title }}

{{ post.body|linebreaks }}

{{ post.date_added|date:'M d, Y H:i' }}

{% empty %}

This blog does not have any posts yet.

{% endfor %} {% endblock content %}