{% extends "layout/base.html" %} {% load i18n %} {% block title %}{% trans "Latest entries" %}{% endblock title %} {% block body_attributes %}id="news"{% endblock %} {% block content %}

{% trans "Dernières news" %}

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

{{ entry.title }}

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

{% trans "No entry yet" %}.

{% endif %} {% endblock content %}