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

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

{% for post in posts %}

{{ post['created'] }}

{{ post['title'] }}

{{ post['content'] }}

{% endfor %} {% endblock %}