{% extends 'base.html' %} {% block title %}Fotoblog - Articles {% endblock %} {% block content %}

Articles

{% include "messages_notif.html" %}
{% if posts|length == 0 %}

il n'y a pas d'article

{% else %} {% for post in posts %}
{{ post.title }}
{% endfor %} {% endif %}
{% endblock %}