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

{{ journal_settings.news.news_title }}

{% if tag %}

Filtering tag: {{ tag }}

{% endif %}
{% for item in news_items %}

{{ item.title }}

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

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

{% trans 'Read More' %}
{% empty %}

This journal currently has no {{ journal_settings.news.news_title }} items to display.

{% endfor %}
{{ page }}
{% endblock body %}