{% load i18n %}

{% trans "Welcome to Chimère"%}

{% trans "This is the default message. You can overload it by modifying the file welcome.html in the template directory of Chimère. Below this message all news message will be displayed. You can add them in administration pages."%}

{% if news_lst %}
{% for news in news_lst %}

{{news.title}} - {% trans news.date %}

{{news.content|safe}}

{%endfor%}
{%endif%}