{% extends "core/base.html" %} {% load truncate %} {% load dates %} {% load pages %} {% block title %}News{% endblock title %} {% block body %}

{% trans 'News' %}

{% if tag %}

Filtering tag: {{ tag }}

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

{{ item.title }}

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

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

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

{% endfor %}
{% endblock body %}