{% extends 'up_squelette.html' %} {% block main %} {% for post in posts %} {% if post.nom != None %}


{% if post.author != None %}{{ post.author }} {%endif%}
{% if post.prenom != None %}{{ post.prenom }}{%endif%}
{% if post.age != None %}{{ post.age }} ans {%endif%}

{{ post.time }}

{{ post.title }}

{{ post.content|safe }}
{% endif %} {% endfor %} {% endblock %}