{% extends 'blog/base.html' %} {% block title %}Le blog{% endblock %} {% block content %} {% for post in posts %}

{{ post.title }}

{{ post.content|truncatewords:100|striptags|safe }}

{% endfor %} {% endblock %}