{% extends "layout.html" %} {% block content %} {% if logged_in %}

New Post

{% endif %}
{% for post in posts %}

{% if logged_in %} edit {% endif %} {{ post.title }} :: {{ post.date }}

{{ post.body | safe }}
{% endfor %}
{% endblock %}