{% extends "core/base.html" %} {% load truncate %} {% load i18n %} {% 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 }}
{% endif %}

{{ item.title }}

{{ item.byline }} {% trans "on" %} {{ item.posted|date:"Y-m-d" }}

{{ item.body|striptags|truncatesmart:400 }}

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

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

{% endfor %}
{% endblock body %}