{% extends 'base.html' %} {% block header %}

{% block title %}Posts{% endblock %}

{% if session['user_id'] %} New {% endif %} {% endblock %} {% block content %} {% for post in posts %}

{{ post['title'] }}

by {{ post['username'] }} on {{ post['created'].strftime('%Y-%m-%d') }}
{% if session['user_id'] == post['author_id'] %}
Edit
{% endif %}

{{ post['body'] }}



View in Looker
{% endfor %} {% if posts|length < 1 %}

No posts yet.

{% endif %} {% endblock %}