{% extends "fluid.html" %} {% load i18n %} {% block container_content %}

{% blocktrans with user=user.fullname trimmed %}Hello {{ user }}.{% endblocktrans %}

{% trans "Latest news" %}

{% for post in news %} {% endfor %}
{{ post.title }} {{ post.published|date:"DATE_FORMAT" }}
{% blocktrans trimmed %} Visit the official weblog for more information. {% endblocktrans %}
{% endblock container_content %}