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

Aleks' Blog

{% if is_admin %} {% endif %}
{% for post in posts reversed %}

{{ post.title }}

{{ post.body|truncatewords:20 }}

{% if is_admin %} Edit {% endif %}

{% endfor %}
{% endblock %}