{% 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}}


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