{% extends "base.html" %} {% load thumbnail %} {% block title %}Changed the title of the homepage{% endblock %} {% block body %} {% for post in posts %}
{{ post.date|date:"F j, Y, g:i:a" }} {% comment %} Design {% endcomment %}

{{ post.text }}

{# TODO Add a detail url #} Read more
{# TODO: User needs a link to their bio and a photo and a thumbnail and a name #} {% thumbnail post.author.profile.image "373x372" crop="center" as im %} {% endthumbnail %}

{{ post.author.username }}

{% endfor %} {% endblock %}