{% load i18n %}

{% trans "Latest entries" %}

{% if latest %} {% for entry in latest %}

{{ entry.title }}

{{ entry.publication_date|date:"d/m/Y @ H:i" }} - {% with entry as object %} {% include 'page_blog/display_category.html' %} {% endwith %}

{{ entry.body|safe }}
{% endfor %} {% else %}

{% trans "No entry yet" %}.

{% endif %}