{% extends "layout.html" %} {% block title %}Mes Publications - Forum Communautaire{% endblock %} {% block breadcrumb %} Accueil / Profil / Mes Publications {% endblock %} {% block content %}

Mes Publications

{% if posts.items %}
{% for post in posts.items %}
{{ post.created_at.strftime('%d %b %Y %H:%M') }}
{{ post.content|striptags|truncate(250) }}
{% endfor %}
{% if posts.pages > 1 %}
{% endif %} {% else %}
Vous n'avez pas encore créé de publications.
{% endif %}
{% endblock %}