{% extends 'layout/base.html' %} {% block page_class %}fixed-width-standalone-page{% endblock %} {% block title %} {% trans %}Latest News{% endtrans %} {% endblock %} {% block content %} {% for item in news %}
{{ item.created_dt|format_date(timezone=session.tzinfo) }}

{{ item.title }} {% if _is_new(item) %}{% endif %}

{{ item.content | safe }}
{% endfor %} {% endblock %}