{% extends "base.html" %} {% load thumbnail %} {% block title %}My super awesome homepage{% endblock %} {% block body %}
{% for post in posts %}
{% thumbnail post.image "200x200" crop="center" as im %} ... {% endthumbnail %}

{{ post.text }}

View Full Image
{% empty %}

Welcome!

Add your first image?

Upload Image
{% endfor %}
{% endblock %}