{% extends 'base.html' %} {% block title %}Blog{% endblock title %} {% block content %}

Blog

you won't find the meaning of life below
{% for post in posts %}

{{post.title}}

{{post.text}}

{% if user %} Update Delete {% endif %}

{% endfor %} {% if posts|length > 5 %} {% endif %} {% if user %} Add {% endif %}
{% endblock content %}