{% extends "core/base.html" %} {% load truncate %} {% load escaping %} {% load i18n %} {% load dates %} {% block title %}{{ journal_settings.news.news_title }}{% endblock title %} {% block body %}

{{ journal_settings.news.news_title }}

{% if tag %}

{% trans "Filtering tag" %}: {{ tag }}

{% endif %} {% for item in news_items %}
{% if item.large_image_file or request.journal and request.journal.default_large_image or request.press.default_carousel_image %}
{{ item.title|striptags|unescape }}
{% endif %}

{{ item.title|safe }}

{{ item.body|truncatewords_html:50|safe}}

{% trans "Read More" %}
{% empty %}

{% trans "This journal currently has no news items to display." %}

{% endfor %}
{% endblock body %}